I’m Using an Electron to track the temperature inside a truck box. I could not connect to AC because it’s a refrigerated box and I could not modify any part of the box.
I use 2 dallas sensors to read the temperature every 15 minutes, after I create a Json that has been sent to particle with all the info. After this, I deepsleep the machine.
The problem is the battery life, I’m using a 3,7v 6000mAh and the duration was only a week.
Is it possible to save energy, or increase the battery power, or increase the performance?
but it’s extremely heavy, I saw a guy with a sigfox element, one temp sensor and a 2 batteries AA. He told me that could be 1 year without recharge bats :-s
@ecabanas, with deep sleep, the cellular subsystem is turned off entirely. So when the Electron wakes, it needs to renegotiate the connection to the nearest tower if the device is mobile. This can take time and consume a lot of power. If the device is mobile, even using STOP mode with SLEEP_NETWORK_STANDBY may not be worthwhile. The best solution may be @kennethlimcp’s suggestion of a larger battery.
If your just logging temp data then you should not need an SD card, you should be able to store data in an array on the Electron without much trouble and then send that data later. Somebody else on here should be able to help get that setup.