I am trying to run the Whisper Node LoRa on a coin cell battery inspired by the blog post here https://www.hackster.io/musskopf/temp-a ... ear-580114
The radio communication and voltage and temperature readings work well when i have a 5V power source, but when I switch to the CR2032 it fails trying to send the first voltage reading (at line 198 in the original code).
I basically just modified the source code to use RH_RF95 instead of RH_RF69 that is being used in the example. The RF69 only stuff like modem config and encryption I have just removed.
My guess is that the myRadio.send(radioBuf, radioBufLen); simply draws too much power and makes the voltage drop below the voltage regulators minimum level. It doesn't make a difference if I let it sleep for 4 seconds before doing send command, so it must be the send command alone that draws too much power I guess.. Unfortunately I don't have the equipment to do a continuous reading of the voltage.
Shouldn't it be possible to run the same code on the LoRa version? Or does the LoRa radio chip use significantly more power?
Is there anyway to configure the RH_RF95 to use less power. I have also tried lowering the RADIO_TX_POWER to 5 which I understand is the minimum, but that didn't help either..
I have tried attaching the DHT sensor as described in the blog post, but have also tried running with nothing attached to the board, but to no avail.
Thanks for any help..
The radio communication and voltage and temperature readings work well when i have a 5V power source, but when I switch to the CR2032 it fails trying to send the first voltage reading (at line 198 in the original code).
I basically just modified the source code to use RH_RF95 instead of RH_RF69 that is being used in the example. The RF69 only stuff like modem config and encryption I have just removed.
My guess is that the myRadio.send(radioBuf, radioBufLen); simply draws too much power and makes the voltage drop below the voltage regulators minimum level. It doesn't make a difference if I let it sleep for 4 seconds before doing send command, so it must be the send command alone that draws too much power I guess.. Unfortunately I don't have the equipment to do a continuous reading of the voltage.
Shouldn't it be possible to run the same code on the LoRa version? Or does the LoRa radio chip use significantly more power?
Is there anyway to configure the RH_RF95 to use less power. I have also tried lowering the RADIO_TX_POWER to 5 which I understand is the minimum, but that didn't help either..
I have tried attaching the DHT sensor as described in the blog post, but have also tried running with nothing attached to the board, but to no avail.
Thanks for any help..
- DTH11Node.ino (5.35 KiB) 7
