-
Sara Damiano replied to the topic Sleep code not working with Maxbotix 7389 in the forum Mayfly Data Logger 6 years, 3 months ago
a. We saw no evidence that the sensor had any issue related to condensation during the tests given that there was a hydrophobic coating on the sensor face and that the bad data occurred at random temperatures as opposed to only when the temperatures were low.
That’s good to know. What was the fluoropolymer grease you used?
b. Reading out the…
-
Sara Damiano replied to the topic uBee R410 setup issues in the forum Mayfly Data Logger 6 years, 3 months ago
Yes, it’s probably related to the same issues that @acgold had. These ublox modules just seem to be so much more finicky than the 2G SIM800’s were.
Could you try switching to the “ModemLast” branch? That’s where the most recent work is and I’d prefer to do more of the troubleshooting on that branch since it’s mostly modifications to the setup…[Read more]
-
Sara Damiano replied to the topic Yosemite library cant be found! in the forum Environmental Sensors 6 years, 3 months ago
sensors/YosemitechY504.his part of the ModularSensors library, not part of the Yosemitech library.You need to post more details of what exactly you’re trying to do and exactly what error messages you’re getting before I can help more.
-
Sara Damiano replied to the topic uBee R410 setup issues in the forum Mayfly Data Logger 6 years, 3 months ago
I’ve attached some annotations showing what’s happening in your logs.
-
Sara Damiano replied to the topic uBee R410 setup issues in the forum Mayfly Data Logger 6 years, 3 months ago
Ugh. I should just get one of these R410 uBee’s just to help other people out.
It looks like it’s powering down when it’s supposed to be waking up and visa-versa.
I could babble at length about it, but my first suggestion to try and make it work it is to add a ~500ms delay [
delay(500);] after themodemPowerUp()and another matching delay after…[Read more] -
Sara Damiano replied to the topic Editing Variable UUIDs in the forum Monitor My Watershed 6 years, 3 months ago
The OBS3+ treats the low range and high range turbidity as if they’re two completely different things. So on Monitor My Watershed you actually have to create two different variables, one for each of the high and low range, just like you would separate temperature and depth from a CTD. I *strongly* recommend you add something to the notes field…[Read more]
-
Sara Damiano replied to the topic Yosemite library cant be found! in the forum Environmental Sensors 6 years, 3 months ago
In what way does it “not see it?”. You mean a program won’t compile? Or you cannot see the examples in the library drop downs? What does you library folder look like? Your program? Do you also have SensorModbusMaster installed and include that in your sketch? The Yosemitech library depends on it.
-
Sara Damiano replied to the topic Yosemite library cant be found! in the forum Environmental Sensors 6 years, 3 months ago
Is this what you’re looking for: https://github.com/EnviroDIY/YosemitechModbus
Did you download all of the libraries in this “Libraries” repository (https://github.com/EnviroDIY/Libraries)? I know there’s a big, green, inviting “download” button on the GitHub page, but because of the way the libraries are in linked repositories, if you download…[Read more]
-
Sara Damiano posted a new activity comment 6 years, 4 months ago
Before you can decide on the best way to monitor your stream, you really need to come up with a concrete question (or questions) about your stream that you desire to answer. Once you’ve decided on the question, developing the monitoring plan is much more straightforward. Without that question, any monitoring is likely to end up being a waste of…[Read more]
-
Sara Damiano replied to the topic Depth measurement using MaxSonar in the forum Mayfly Data Logger 6 years, 4 months ago
I don’t remember exactly which models we’ve tested or which seems to be the best; maybe Shannon can pipe in.
No matter which you’re using, definitely do get the MaxTemp.
-
Sara Damiano replied to the topic Sleep code not working with Maxbotix 7389 in the forum Mayfly Data Logger 6 years, 4 months ago
Did the modification I suggested get your board to go back to sleep and stay asleep?
-
Sara Damiano replied to the topic RS485 without auto direction control in the forum Mayfly Data Logger 6 years, 4 months ago
I’m sorry I haven’t responded. My family is finally finished with a fun round of stomach bugs.
Were you by chance talking with @neilh or did you just happen to get to the same place at almost the same time coincidentally? Neil wrote up a fix for this in the SensorModbusMaster library, which I just accepted. If you update that library, you…[Read more]
-
Sara Damiano replied to the topic RS485 without auto direction control in the forum Mayfly Data Logger 6 years, 4 months ago
Oops. I’d meant to cut the code using NeoSWSerial and SoftwareSerial from that particular example but apparently cut it only from the example platformio.ini file.
Can you post your platformio.ini file? Are you using Atom or VSCode? It shouldn’t make a difference for the code; I’m just asking so I can help you better. What versions of all…[Read more]
-
Sara Damiano replied to the topic Multiple pins at one site in MMW in the forum Monitor My Watershed 6 years, 4 months ago
Yeah, it’s a known issue.
-
Sara Damiano replied to the topic RS485 without auto direction control in the forum Mayfly Data Logger 6 years, 4 months ago
I was feeling cocky after the LTC1480 worked and pulled out the Max485 and level shifters. Zero success with communication, but I didn’t have any problems with the program crashing.
-
Sara Damiano replied to the topic RS485 without auto direction control in the forum Mayfly Data Logger 6 years, 4 months ago
Ok, I broke out the 3.3V RS485 chip I have (an LTC1480) from the “someday I’ll test this” box. I’d bought the chip ages ago to try out in place of the (5V) MAX485 that I couldn’t ever get to work. But since the automatic flow control always worked nicely, I threw the LT1480 onto a shelf unopened.
Anyway, it worked for me. I made some very…[Read more]
-
Sara Damiano replied to the topic RS485 without auto direction control in the forum Mayfly Data Logger 6 years, 4 months ago
Also, I’m really surprised you couldn’t find an adapter with automatic flow control. Where were you looking? There are a bunch on Amazon. This is one brand I’ve bought: https://www.amazon.com/SMAKN%C2%AE-Adapter-Serial-Converter-Module/dp/B010723BCE
-
Sara Damiano replied to the topic RS485 without auto direction control in the forum Mayfly Data Logger 6 years, 4 months ago
I have never gotten the communication to work correctly using manual flow control, but it should not be causing your board to restart. I’ll look into it.
When using manual flow control, you have to set the direction pin high or low to change directions. The library does this, but I think there is a timing issue or something because my attempts at…[Read more]
-
Sara Damiano replied to the topic Sleep code not working with Maxbotix 7389 in the forum Mayfly Data Logger 6 years, 4 months ago
Well, actually, I forgot about the internal data filter. Leaving the sensor always powered will give time for that to come into play. I don’t know if it will help any, though.
Some thing else I thought about in your code: Even though you’re delaying for a second between calls to the
SonarRead()function, you were actually parsing and keeping…[Read more] -
Sara Damiano replied to the topic Sleep code not working with Maxbotix 7389 in the forum Mayfly Data Logger 6 years, 4 months ago
I put your code into a “code snippet” to make it easier to read.
You’re listening to the sonar via SoftwareSerial. SoftwareSerial works by means of pin change interrupts. Pin change interrupts wake the board up. While the sonar is powered, it will continuously send out data. So if your sonar is continuously powered and continuously sending…[Read more]
- Load More
Welcome to EnviroDIY, a community for do-it-yourself environmental science and monitoring. EnviroDIY is part of
We have not tested that part of the data collection yet. Instead, we are first testing the approach in your suggestion as to powering up the sensor then opening the serial port, taking fresh reading, and then closing the serial port resulting in dumping all old data from the buffer. There is evidence in our previous data to support your idea…[Read more]