I'm using a SIM808 module (on a breakout card) and I want to send only 20 bytes every 6 hours (i.e. 120 bytes per day), containing GPS position and some very short other data.
So I think I'll probably have to use an Arduino. In order to use the less battery-possible, should I:
Have the Arduino running fulltime (with
sleep
most of the time), and GSM connected all the timeHave the Arduino running fulltime (with
sleep
most of the time), and GSM off most of the time, and GSM turned on only 1 minute every 6 hoursHave the Arduino + GSM completely off most of the time, and have a timer chip (what chip?) powering on the Arduino + GSM chip only 1 minute every 6 hours.
Another idea that would use even less battery?
Obviously 1. is not optimal at all. Would you use 2. or 3. (if so, how?)