I've been investigating about powering an Arduino nano with a 3.7 V battery, but so far I found that 5 V is recommended. However I found some projects online with a 3.7 V (Lipo or not) and working:
Ok, that’s a good way to mod the arduino boards to work fine with 3.7 V Lipo boards. At the end of the second link there are some concerns and tips regarding operating frequency and voltage for arduino micros…
Due to the “definetive” way of this mod, and because step up voltage converters are so cheap, I think this mod is better only if the project is for long term. Also it’s maybe a bit more power efficient, that with low power applications and running with small bateries can be considered.
AVR are made for low power applications, as low as 0.7v . The nanos at <5v will work a little slower, analog pins will be glitchy and the 5v and 3v3 regulators will provide a lower voltage.
A really easy way to conver a nano to low power would be to bypass the 5v regulator and desolder the clock. Without the regulator it will have full power and without the external clock it will use the internal clock, which is at 8Mhz.
There are two kinds of the There are two kinds of the Pro Mini boards, one with 8Mhz for 3.3V, and one with 16Mhz for 5V. In practice, you can power both of them with the 3.7V from a LiPo, but you approach it differently.
I’m mostly using the 3.3V model in my recent robots, and just power them through the RAW pin as you would normally do. The internal linear regulator drops that to the required 3.3V and all the functions of the board work correctly.
With the 5V board, you need to bypass the internal regulator (which wants to regulate down to 5V, which is not possible with 3.7V coming in), and power the board through the VCC pin directly. You will get the board running at 16Mhz at 3.something, which is technically overclocking the AVR chip, but works fine in practice. One thing that will not work is the internal EEPROM, which apparently requireds higher voltage (especially writes).
I use the Adafruit Trinket for 3v3. When I want a small Arduino, I use the Adafruit Trinket 3v3. They also have a 5v one but I can get ebay clones cheaper.
I got a few before I realized that ebay had clones much cheaper.
The Teensy 3.1 also runs on 3v3 and should be able to run on a single LiPo.
Right, if you need the USB Right, if you need the USB connector, use Nano, which also comes in 3.3V and 5V versions, but is two times more expensive, due to the included USB2TTL chip. Personally, I use Pro Minis with an external USB2TTL, because this way I can reuse it, but it totally makes sense to use Nano if your project is going to be connected to the computer a lot.