-
Shannon Hicks replied to the topic How to determine battery and power supply in the forum Mayfly Data Logger 1 years, 2 months ago
Sensors with heaters are another big challenge, especially if they run continuously. Are the heaters powered all the time, or only when taking a sample? Do they require 12v to operate, or was that spec just listing the power draw at 12v?
You can do some basic battery life calculations on this handy website: https://oregonembedded.com/batterycalc.htm
-
Shannon Hicks replied to the topic How to determine battery and power supply in the forum Mayfly Data Logger 1 years, 2 months ago
Standard practice is that when the Mayfly board goes to sleep in between measurements, it turns off all power supplied to the sensors and radio module. So the power consumed when sleeping is just the bare minimum to keep the Mayfly in sleep mode, which is usually a little less than 1 milliamp. There are ways to make it use even less in sleep m…[Read more]
-
Shannon Hicks replied to the topic Widespread cellular network outage today in the forum Monitor My Watershed 1 years, 2 months ago
It appears that the Hologram service interruption has been fixed and almost all of the cellular stations on Monitor My Watershed have returned to normal operation. If any stations don’t rejoin the network by later today, it might require a field visit to cycle the power or possibly replace the battery.
-
Shannon Hicks started the topic Widespread cellular network outage today in the forum Monitor My Watershed 1 years, 2 months ago
There is currently an issue with the Hologram cellular network that is used with most of the EnviroDIY stations with cellular modules. The network problem is preventing all Mayfly logger stations with Hologram SIM cards from being able to send data to the Monitor My Watershed data portal. Hologram is aware of the issue and apparently has fixed t…[Read more]
-
Shannon Hicks replied to the topic Where to Find the Logger ID for Mayfly Data Logger in the forum Mayfly Data Logger 1 years, 4 months ago
I’m not sure what the Mayfly Data Logger Pro is. Do you mean the program (or sketch) used to configure the board? If you’re using one of the provided sketches we publish on Github, there’s a couple lines in each sketch that looks like this:
// Logger ID, also becomes the prefix for the name of the data file on SD card const char* LoggerID = "…
-
Shannon Hicks replied to the topic esp32-bee-wifi-bluetooth in the forum Infrastructure and Equipment 1 years, 4 months ago
There’s a link to the schematic on the item page along with a link to an example sketch on Github.
-
Shannon Hicks replied to the topic Mayfly version 0.5b data accuracy/validity in the forum Mayfly Data Logger 1 years, 5 months ago
The CTD sensor you have is a digital output sensor, meaning all of the measurement happens onboard the sensor and it outputs a string of 3 numbers, all the Mayfly logger board is doing is capturing those numbers and storing them. If there was a problem with the Mayfly board, then you wouldn’t get the numbers at all, and there’s no calibration or…[Read more]
-
Shannon Hicks replied to the topic Mayfly v1.1 technical questions forum thread in the forum Mayfly Data Logger 1 years, 5 months ago
Reminder quote from the first post of this thread: If you’ve got a basic question such as what are the board’s features or how it differs from previous versions, this is the place to ask. If you’ve got a more complicated question or issue, then it is probably best to start your own thread. The goal of this thread is to be a great informati…[Read more]
-
Shannon Hicks replied to the topic Mayfly v1.1 technical questions forum thread in the forum Mayfly Data Logger 1 years, 5 months ago
The analog reference voltage (AREF) pin of the ATmega1284P is broken out to the left-hand 2×10 header if you wanted to apply a voltage other than (and less than) 3.3v. If you leave it floating and don’t specify the AREF in your code, then it’ll use the default 10-bit setting for any regular analog reading like you’ll find in most code…[Read more]
-
Shannon Hicks replied to the topic 2022 EnviroDIY Hardware Status and Availability in the forum Mayfly Data Logger 1 years, 5 months ago
LTEbees should be back in stock later this week in the EnviroDIY shop and in a week or two on Amazon. The big order we placed from our manufacturer back in March had some production delays but is supposed to be delivered this week. The RS485 adapter is still not ready for release, the original design relied on the 12v boost circuitry of the M…[Read more]
-
Shannon Hicks replied to the topic XBee Networks of Mayfly Loggers – 900Mhz in the forum Mayfly Data Logger 1 years, 5 months ago
The Bee socket of the Mayfly board isn’t powered continuously by default, so in your code examples above, it appears that you’re not turning them on. If you study the schematic for whichever hardware version of the Mayfly you have, you’ll see that you either have to activate the power to the bee socket’s regulator by setting Mayfly pin D18 high…[Read more]
-
Shannon Hicks replied to the topic Mayfly v1.1 technical questions forum thread in the forum Mayfly Data Logger 1 years, 5 months ago
The ADC example I linked above from Sparkfun applies only to the onboard 10-bit ADC of the ATmega1284 processor. For the ADS1115 auxiliary ADC on the Mayfly board, the formula on the Sparkfun page does not apply, because the ADS1115 is a dedicated ADC chip and works differently. The operational specs of the chip are outlined in the TI d…[Read more]
-
Shannon Hicks replied to the topic Mayfly v1.1 technical questions forum thread in the forum Mayfly Data Logger 1 years, 5 months ago
The calculation for the conversion of analog bits to voltage depends on the operational voltage of the system (3.3v in our case) and the resolution of the ADC. You can see an example calculation (and more importantly, the formula used) for a 10-bit Arduino here: https://learn.sparkfun.com/tutorials/analog-to-digital-conversion/all
-
Shannon Hicks replied to the topic Mayfly v1.1 technical questions forum thread in the forum Mayfly Data Logger 1 years, 6 months ago
The ATmega1284P processor of the Mayfly is similar to other basic Arduino boards with the 324P processor in that it has an internal 10-bit Analog-to-Digital converter (ADC). There are 8 ADC pins on the 1284P, so these pins can be used to read analog voltages, however at a pretty coarse resolution (1024 bits over the 3.3v sample range). But t…[Read more]
-
Shannon Hicks replied to the topic Mayfly v.1.1 – Clarivue Turbidity Sensor in the forum Mayfly Data Logger 1 years, 6 months ago
There’s nothing to unsolder. Solder Jumper SJ25 has 2 small pads. By default, they are separated and not connected at all, and that makes the on-board boost circuitry output 12 volts. By putting a solder blob on SJ25 and connecting the 2 pads, you add some extra resistance to the circuitry that controls the voltage and it’ll output 9 volts in…[Read more]
-
Shannon Hicks replied to the topic Curious sensor failures and cyclical measurements in the forum Mayfly Data Logger 1 years, 6 months ago
Have you tried disconnecting one sensor at a time and seeing how the other one performs? We’ve found that sometimes when one sensors fails or “goes bad”, it can cause erratic readings or performance of any other sensor that’s also connected. By unplugging each sensor independently, it’s usually easy to isolate which sensor was the actual c…[Read more]
-
Shannon Hicks replied to the topic Mayfly v.1.1 – Clarivue Turbidity Sensor in the forum Mayfly Data Logger 1 years, 6 months ago
Is it a Mayfly 1.1 revB board? or a revA? That station seems to not have the usual 4.3v during the day that most v1.1revB boards get, and is more similar to the voltage one sees on a v1.0 or v1.1revA board. What solar panel do you have on that station, and is it in a very shady location, or is the panel pointed north?
All that being said, di…[Read more]
-
Shannon Hicks replied to the topic Mayfly v.1.1 – Clarivue Turbidity Sensor in the forum Mayfly Data Logger 1 years, 6 months ago
-9999 is not an actual reading from the sensor, it’s what the Mayfly stores as the value when it doesn’t actually get a valid number from the sensor. You’d see the same thing is no sensor was attached to the Mayfly at all. What is the MMW station name or URL?
-
Shannon Hicks replied to the topic Negative Voltage Reading from Single-ended ADC Using Apogee SP-212-SS Sensor in the forum Environmental Sensors 1 years, 6 months ago
Questions about implementing new hardware configuration or adding new sensors are best asked here on the EnviroDIY forum in the appropriate category. While I’m the designer of the Mayfly Logger board, there are plenty of other knowledgeable people in this community who can also help answer questions.
-
Shannon Hicks replied to the topic Power usage of Mayfly1.1 with Hydros 21 cTD and LTE BEE cell modem in the forum Mayfly Data Logger 1 years, 6 months ago
We’ve published some sample power usage readings over the years, but it varies by station configuration and board version and a few other settings. But in general, a Mayfly v1.1 revB board with an EnviroDIY sim7080 LTEbee will use about 8 mA at idle, 0.650 mA in sleep mode, and a max of 110 mA for a few seconds when actively transmitting. But y…[Read more]
- Load More