arduino datasheet?

hi,
is there a datasheet on arduino?
or just a webpage with basic specs?

i've been searching the webpage and forums, but haven't been able to find anything but the atmel datasheet. :-/ i'm not shure whether that translates directly to the arduino inputs and how...

i'm wondering things like:
what is the input threshold for a digitalRead to return 1?
what is the max voltage i can give the arduino board with no risk of burning it?
what kind of external power supply is needed?

best,
jacob

Components have data sheets, finished products usually don't - they have manuals and schematics. The web site is the manual for the arduino. Check the arduino hardware page http://www.arduino.cc/en/Main/Hardware and it'll give you some useful information. For example, the schematic will reveal that nearly all of the arduino's pins are simply wired directly to the Atmel's pins. Check the ATmega8 data sheet for signal levels and input voltage specs.

For input voltage to the board, the 5V input expects a regulated 5VDC. The arduino NG normally gets this from USB. The "9V" connectors are tied to the input of the 7805 (78M05 to be precise, on my arduino NG), so you'll need to check the datasheet for a the 7805 to find that. I think the 78xx series need 2V over the output to properly regulate, so the 7805 need a minimum of 7VDC input, and a maximum of around 35VDC input. Almost any DC output power supply over 7V you're likely to find in your junk box should be OK.

On p245 of the ATmega8 data sheet they give electrical ratings for the inputs. a High is a minimum of 0.7*Vcc (3.5V on a 5V arduino) and a maximum of Vcc+0.5V. The absolute max ratings of the ATmega8 is 5.5V.

-j

thanks! all is working now:
i was trying to power my USB arduino from an external power supply (not via USB), and i found from the schematics on http://www.potemkin.org/uploads/Pid/arduino_usb.jpg that i needed to switch SV1 manually on the board. didn't see that detail before...
/j