How to efficiently operate the Arduino GSM shield with a battery pack
1–10 of 15 posts
Re: How to efficiently operate the Arduino GSM shield with a battery pack
#2Re: How to efficiently operate the Arduino GSM shield with a battery pack
#3Re: How to efficiently operate the Arduino GSM shield with a battery pack
#4I'm preparing a large project using Arduino that will need to be running on battery power for long periods of time. I haven't attempted anything like this before, but everywhere I read tells me that Arduino is not power efficient at all, and people have to get creative to conserve power. I guess such is the way of low-end microprocessors, something we take for granted in power powerful machines.
The one gotcha was making sure the board being used had a reasonably efficient regulator on it, some of them have regulators which draw a (relatively) huge idle current so putting the chip to sleep has almost no impact.
Hope that's of some use!
Re: How to efficiently operate the Arduino GSM shield with a battery pack
#5I'm preparing a large project using Arduino that will need to be running on battery power for long periods of time. I haven't attempted anything like this before, but everywhere I read tells me that Arduino is not power efficient at all, and people have to get creative to conserve power. I guess such is the way of low-end microprocessors, something we take for granted in power powerful machines.
The main power consumer in the GSM case is of course the GSM transmitter, so it's no suprise that he can improve power consumption by turning it off.
Generally on more powerful machines you take for granted the operating system, firmware and their many conveniences, but often there will be bugs or poor design decisions that increase power consumption by quite a lot.
Re: How to efficiently operate the Arduino GSM shield with a battery pack
#6I'm preparing a large project using Arduino that will need to be running on battery power for long periods of time. I haven't attempted anything like this before, but everywhere I read tells me that Arduino is not power efficient at all, and people have to get creative to conserve power. I guess such is the way of low-end microprocessors, something we take for granted in power powerful machines.
Re: How to efficiently operate the Arduino GSM shield with a battery pack
#7I'm preparing a large project using Arduino that will need to be running on battery power for long periods of time. I haven't attempted anything like this before, but everywhere I read tells me that Arduino is not power efficient at all, and people have to get creative to conserve power. I guess such is the way of low-end microprocessors, something we take for granted in power powerful machines.
Re: How to efficiently operate the Arduino GSM shield with a battery pack
#8I'm preparing a large project using Arduino that will need to be running on battery power for long periods of time. I haven't attempted anything like this before, but everywhere I read tells me that Arduino is not power efficient at all, and people have to get creative to conserve power. I guess such is the way of low-end microprocessors, something we take for granted in power powerful machines.
Not sure what you mean here, a microcontroller platform like Arduino can be extremely low power. The AVR chip itself uses a few mW running at full speed, and less in sleep mode (less than an LED). What uses most power is other devices in your circuit, you need to be careful with them and shut them off when not needed.
Re: How to efficiently operate the Arduino GSM shield with a battery pack
#9I'm preparing a large project using Arduino that will need to be running on battery power for long periods of time. I haven't attempted anything like this before, but everywhere I read tells me that Arduino is not power efficient at all, and people have to get creative to conserve power. I guess such is the way of low-end microprocessors, something we take for granted in power powerful machines.
Look into the TI MSP430. It was built with low-power in mind. There's even an Arduino IDE port for it called Energia if you're not comfortable in C/C++. Check out http://www.43oh.com for forums. Also, I put together an aggregated list of links to tutorials from a really nice blog http://goo.gl/IFsrJi . Also, I should mention, these boards are < $5 shipped from TI and includes 2 chips and a USB cable!
Re: How to efficiently operate the Arduino GSM shield with a battery pack
#10I'm preparing a large project using Arduino that will need to be running on battery power for long periods of time. I haven't attempted anything like this before, but everywhere I read tells me that Arduino is not power efficient at all, and people have to get creative to conserve power. I guess such is the way of low-end microprocessors, something we take for granted in power powerful machines.
Look into the TI MSP430. It was built with low-power in mind. There's even an Arduino IDE port for it called Energia if you're not comfortable in C/C++. Check out http://www.43oh.com for forums. Also, I put together an aggregated list of links to tutorials from a really nice blog http://goo.gl/IFsrJi . Also, I should mention, these boards are < $5 shipped from TI and includes 2 chips and a USB cable!
For those not interested in Contiki, late in the post there are some power consumption measurements that illustrate rather clearly why switching off the 60 mW radio as much as possible is a must as soon as you go battery.
You can find the Contiki-port at https://github.com/msloth/contiki-launchpad