Loading...
  Show Posts
Pages: [1]
1  Using Arduino / General Electronics / Re: Transistors? on: March 15, 2011, 06:01:03 am
http://knol.google.com/k/electronic-circuits-design-for-beginners-chapter-8#
2  Using Arduino / Programming Questions / Re: Arduino Uno with a Pot to control voltage on: February 27, 2011, 04:33:39 am
As the Arduino pins supply 5 volts and your valve requires 8 volts I would suggest using the Arduino to control a transistor supplying the 8 volts to the valve.
3  Using Arduino / Programming Questions / Re: Arduino Uno with a Pot to control voltage on: February 27, 2011, 04:04:33 am
You need analogWrite.

http://arduino.cc/en/Tutorial/Fade
4  Using Arduino / Programming Questions / Re: Arduino Uno with a Pot to control voltage on: February 27, 2011, 03:42:12 am
http://arduino.cc/en/Tutorial/AnalogReadSerial
5  Using Arduino / Programming Questions / Re: how to separate events on: February 15, 2011, 02:50:30 am
See this.

http://arduino.cc/en/Tutorial/BlinkWithoutDelay
6  Using Arduino / Installation & Troubleshooting / Re: Best Alternative Arduino BT Upload Method on: January 31, 2011, 04:05:07 am
Hi... I built the parallel programmer and it´s working fine. I only use it to bootload chips on a breadboard but loading sketches should be as easy.
7  Forum 2005-2010 (read only) / Uno Punto Zero / Re: WILL any Body HELP! (Parallel Programmer) on: January 20, 2011, 03:32:52 pm
Hi there..Don´t know if this will help but I built the parallel programmer and Arduino on a breadboard. I wanted to bootload a Mega168 chip. After countless failures I finally suceeded in bootloading the chip as follows....

Downloaded the latest WinAVR
Copied and renamed the ATmegaBOOT_168_diecimila.hex to diecimila.hex and put this file in c:\
Opened windows command prompt
Changed directory to C:\
Then ran the following command...
avrdude -c dapa -p m168 -F -U diecimila.hex

Hey presto...It bootloaded perfectly and is working fine.
The -c dapa instruction uses defaults for anything not specified such as LPT1 as parallel port and -U asumes you want to erase the chip and flash the named file. I put the boot file in root directory and ran the avrdude from root so it automatically looked in that directory for the boot file first.

Hope this helps someone.  
Pages: [1]