Show Posts
|
|
Pages: 1 [2] 3 4 ... 14
|
|
16
|
Using Arduino / Project Guidance / Re: Solar powered ATtiny85 "hanging" during startup
|
on: May 07, 2013, 11:04:55 pm
|
|
You will be far better off using a small battery. The battery is not for running the Micro over the night, but is there to ensure that in low light in the morning when the Solar Panels voltage rises sufficiently high to start the ATtiny, there is enough current available to run it. Solar cells dont have a linear voltage / current relationship. The voltage with no load rises at a logarithmic rate whilst the current capacity rises at a linear rate for a given illumination. What happens with no battery, is that the solar voltage will rise quickly to above 5 V , which will cause the 7805 to start operating, but the solar cell has no capacity to deliver any current , so the voltage immediately collapses, and the Micro stops.
|
|
|
|
|
17
|
Using Arduino / Project Guidance / Re: Has anyone got practical experience of Solar
|
on: May 07, 2013, 06:50:19 pm
|
|
Ive made a number of remote operated devices which run off Micros In my case using PICS not Arduinos , but the principle is the same. You need to know the daily power draw of the device to be powered. You then need to know the worst case sun hour value for the middle of winter, usually around 2 - 3. You then have to allow for multiple days of cloudy weather , usually 5 days is a good compromise , but varies somewhat depending on your latitude. You can then size the battery and the solar panel to suit. Try and reduce the power draw of the device to an absolute minimum when its not doing anything useful.
|
|
|
|
|
28
|
Using Arduino / Project Guidance / Re: Wireless USB?
|
on: April 22, 2013, 05:32:15 pm
|
|
The problem with running USB over wireless is meeting the USB speed standards. USBV1.1 which is the slowest, requires 12 Mega bits/sec which is viable using wireless but very hard to implement. You can buy wireless USB extenders , but they are expensive .
|
|
|
|
|
29
|
Using Arduino / Displays / LCD displays using the HD44870 , power consumption.
|
on: April 22, 2013, 12:21:31 am
|
|
Many of the common 2 X 16 LCD display use this chip. Does anyone have any ideas of how to reduce the power consumption of the display. Most of the common displays require around 1 - 1.5 ma without a backlight yet the HD44780 controller chip specs require only 150 ua . I dont know where the rest of the power goes. The display Im using only changes its value around once every 1 1/2 minutes so data writes dont occur very often. Trying to make a small battery powered Temperature sensor , and 1.5 ma draw kills the AAA batteries.
|
|
|
|
|
30
|
Using Arduino / Sensors / Re: Where to get sensors for weather station?
|
on: April 19, 2013, 04:55:33 am
|
Do you actually want to make the sensors , or do you want to use existing commercial sensors. You may be interested in this project. http://wmrx00.sourceforge.net/Its called Weather Station data Logger and it uses an Arduino with a custom shield to simulate an Oregon Weather Station Console and allows PC monitoring of a wide range of Weather conditions. It can measure Humidity, Temperature, wind speed & direction , UV , Rainfall,Barometric Pressure. Ive built 2 Arduino based Weather Shields, and Im now in the process of making my own Temperature / Humidity Sensors using DHT22 sensors.
|
|
|
|
|