I want to upgrade my weather station wich is actually working on a Arduino Nano : I have no problem but my battery is empty after 10-15 days (4x AA 1.2 batteries)
I'm testing :
hygro / temperature : DHT22 (3.3v)
pressure : BMP180 (3.3v)
light : TSL2561 (3.3v)
later : AirQuality MQ-135 (5.0v) and ground moisture
I use a RF 433MHz transmitter (5.0v) for sending the data to my Raspberry Pi.
I wouldlike to use an Arduino Pro Mini 5V 16MHz, wich is more powersave efficient but some components works on 3.3v...
Do you know the sleep mode total current? If that's low enough your best approach is to attack the
duty cycle, reducing the time sensors are powered up, transmitting at a higher baud rate, or
simply taking readings less often.
If the sleep mode current isn't down at 10uA or lower, try to reduce it.
I'm using the library jeelib and the sleepmode, but I do not reach a so low amperage : the best I can do with my Nano is 6.8mA in sleep mode.
I wanna try with an Arduino pro Mini but this one cannot provide both voltage 3.3v and 5v... The converter I show you (PowerPOD)) can maybe help me ?
Or is it more efficient to use an Arduino Pro Mini 3.3V 8MHz ? How to increase the voltage to 5.0v for the concerned components ?
You can run the 3.3V/8MHz Promini from 5V - just connect 5V to the Vcc pin to bypass the regulator. The '328P will run at 8 MHz with a 5V supply just fine.
CrossRoads:
You can run the 3.3V/8MHz Promini from 5V - just connect 5V to the Vcc pin to bypass the regulator. The '328P will run at 8 MHz with a 5V supply just fine.
WOW that seems so easy...
I will try to power my arduino 3.3v / 8MHz with a 5v battery and use that 5v to power my components wich need VCC 5v.