-
Sara Damiano replied to the topic Trouble registering with LTE-M network on Hologram in the forum Miscellaneous 5 years, 2 months ago
Do you have the latest u-blox firmware?
-
Sara Damiano replied to the topic Trouble registering with LTE-M network on Hologram in the forum Miscellaneous 5 years, 2 months ago
Yes, I’ve seen this sort of thing.
Well, not precisely, but similar. The Digi LTE XBee3’s have the same chip and I’ve seen it happen several times that the XBee refused to register, then I put it in bypass to check the registration, got it to register, then it magically stayed registered when I went back. I haven’t seen it consistently, though,…[Read more]
-
Sara Damiano replied to the topic Uploading Data to data.envirodiy.org in the forum Miscellaneous 5 years, 2 months ago
You’re missing some rows of your header. That file will definitely not work.
At minimum, you need the text “Sampling Feature UUID: ” before that UUID and another row that specifies the UTC offset with the text “Date and Time in UTC-#” where # is your offset. You can put all the result UUID’s on the row with the feature UUID as you’ve done, as…[Read more]
-
Sara Damiano replied to the topic Mayfly Stops Logging and Other Issues in the forum Mayfly Data Logger 5 years, 2 months ago
Since we are not using the screen any longer, I2C is also no longer being used.
No. If you are using either the DS3231 real time clock or the TI1115 analog-to-digital converter built into the Mayfly, you are using I2C. Both of those are I2C chips.
-
Sara Damiano replied to the topic Mayfly Stops Logging and Other Issues in the forum Mayfly Data Logger 5 years, 2 months ago
It’s possible that there is a short-circuit in the Mayfly, but this sounds more like a problem with your code or sensors.
When you’re posting code, please use the “Add Code Snippet” button. It adds coloring and formatting which makes the code much easier to read.
When you’re troubleshooting the boards, make sure to check the position of all of…[Read more]
-
Sara Damiano replied to the topic Data Gap When Voltage is Low in the forum Mayfly Data Logger 5 years, 2 months ago
You can also try dropping the minimum battery voltage for the modem to ~3.5. Shannon has suggested that, especially if the battery voltage is going down at night but is likely to be recharged once the sun comes out.
-
Sara Damiano replied to the topic Data Gap When Voltage is Low in the forum Mayfly Data Logger 5 years, 2 months ago
It doesn’t send the data from the gap because the ModularSensors library simply doesn’t have that functionality. It doesn’t attempt to re-send data. The data should be on the SD card, as long as the battery was still high enough to log.
I would really love to have that functionality in ModularSensors, but it’s not simple to implement and I just…[Read more]
-
Sara Damiano replied to the topic SD Card Recording Data Issue in the forum Mayfly Data Logger 5 years, 2 months ago
You’ve included both “SD.h” and “SdFat.h”. Did you try including only one of those? They might not conflict for the compiler, but they have very similar functionality and shouldn’t be included together. Your code is written for SD. SdFat is better, but for what you’re doing it shouldn’t matter.
-
Sara Damiano replied to the topic SD Card Recording Data Issue in the forum Mayfly Data Logger 5 years, 3 months ago
What do you mean by “does not work?” What do you see on the serial monitor and on you SD card’s file? When you say “The code itself works to display the data in the serial monitor, but it does not works when recording it into the SD card.” do you mean that you can see data on the Serial Port monitor do you mean that if you replace all instances…[Read more]
-
Sara Damiano posted a new activity comment 5 years, 3 months ago
In the future, please create a forum post instead of a status update.
To use PlatformIO, the code has to be structured like proper C++. That is, move the definition of those three functions to above the loop and setup functions. They must be at least declared above the setup and loop. If you’re using the Arduino IDE, which that sketch was…[Read more]
-
Sara Damiano replied to the topic logging to mmw with GPRSbee rev.7, issue wake/sleep and server response 504 in the forum Monitor My Watershed 5 years, 3 months ago
Can you post some debugging logs? Along with the Thing Speak / MMW debugging, could you turn on the “deep” debugging for the gprsbee? You’ll need to install the StreamDebugger library.
I’m sorry. Testing with 2G is a hassle for me because the coverage is terrible is my area. It would help if I can see what is going on.
-
Sara Damiano replied to the topic best practices enabling debugging modular sensors using platformIO in the forum Mayfly Data Logger 5 years, 3 months ago
I found the issue with the ThingSpeakDebugger. It’s now been fixed. It might take until tomorrow before PlatformIO “sees” the new version though.
To update your libraries in your current project:
– Open a new terminal in your project in Atom or go to the Terminal pane in VSCode
– typepio lib update
– all your libraries for the project should…[Read more] -
Sara Damiano replied to the topic best practices enabling debugging modular sensors using platformIO in the forum Mayfly Data Logger 5 years, 3 months ago
I’m sorry I’ve not responded. I’m honestly baffled by the errors.
Could you show your whole ini and a shot of the contents of your .pio/libdeps/mayfly folder?
-
Sara Damiano replied to the topic best practices enabling debugging modular sensors using platformIO in the forum Mayfly Data Logger 5 years, 3 months ago
@fisherba – StreamDebugger is only needed if you include it in your program; it isn’t and never was a dependency of ModularSensors or TinyGSM. It’s not included in ModularSensors.
-
Sara Damiano replied to the topic best practices enabling debugging modular sensors using platformIO in the forum Mayfly Data Logger 5 years, 3 months ago
Oh, and just to note about those other build flags:
-DSDI12_EXTERNAL_PCINT – this tells the library that you don’t want the SDI-12 library to try to monopolize the interrupts on an AVR board, which is required to make it “play nice” with the other libraries. You absolutely must set this because the SDI-12 library is a dependency of…[Read more]
-
Sara Damiano replied to the topic best practices enabling debugging modular sensors using platformIO in the forum Mayfly Data Logger 5 years, 3 months ago
You can also enable all of the debugging using a build flag in your platformio.ini. The result is exactly the same as if you un-comment the line in the header. You can add flags for any (or all) of the different modules.
build_flags = -DSDI12_EXTERNAL_PCINT -DNEOSWSERIAL_EXTERNAL_PCINT -DMQTT_MAX_PACKET_SIZE=240…
-
Sara Damiano replied to the topic data.envirodiy.org destination IP address in the forum Mayfly Data Logger 5 years, 4 months ago
Those settings should be right for the XBee Wifi. Are you sure the unit is connected properly to your wifi? Can you connect the unit to XCTU and try to send a test json in the console log of XCTU?
That example sketch should still work, but for anything new I would recommend you switch to using the ModularSensors library to send data to the…[Read more]
-
Sara Damiano started the topic Uploading CSV data to the EnviroDIY Data Sharing Portal in the forum Monitor My Watershed 5 years, 5 months ago
The EnviroDIY/WikiWatershed data sharing portal is great for accepting live data from data loggers that can access the internet. If you’re using the ModularSensors library or hand-writing your post requests, you can see your data right away. But for sites where there’s not access or a budget for live data, you can upload data in csv format to take…[Read more]
-
Sara Damiano replied to the topic XBee Networks of Mayfly Loggers – 900Mhz in the forum Mayfly Data Logger 5 years, 5 months ago
@jkirchoff – drive the pin level with the digitalWrite(#, level) function.
If you’re using a Mayfly, the XBee’s sleep request pin is attached to the Mayfly pin 23. So to wake the bee, send data, and put it to sleep all you needs is:
digitalWrite(23, HIGH);
Serial1.print(“some text);
// more print statements as desired
digitalWrite(23, LOW);Use…[Read more]
-
Sara Damiano posted a new activity comment 5 years, 6 months ago
Um.. and it’s also possible that the esp I gave you had a botched firmware upgrade. If you’re not getting connected, come and demand a better one from me.
- Load More