Digitalpin Eingang mit USB Lader 5V 500 - 1000ma beaufschlagen?

Dimivo:
@BerndJM: Soweit ist mir klar, dass der Strom abhängig vom Verbraucher ist. Die Frage wäre wirklich, ob am Eingang des Arduino 1A ohne Schaden zulässig wären, oder ob da die 40mA wirklich die Grenzen sind.

Die Grenzen sind:
40mA max je Pin als Ausgang
200mA als Summe aller LOW bzw HIGH Pins (fließt über Versorgungspannungspin bzw Massepin des ATmega)
100mA für Port
150mA für Port wegen interner Verbindung Versotrgungspannung/masse zu den Ports.

Siehe http://www.atmel.com/Images/doc8161.pdf
Seite 313 Tabelle 28.1

DC Current per I/O Pin ............................................... 40.0 mA
DC Current VCC and GND Pins................................ 200.0 mA

und Seite 314 Fußnote 3 und 4 von Tabelle 28.2

  1. Although each I/O port can sink more than the test conditions (20 mA at VCC = 5V, 10 mA at VCC = 3V) under steady state conditions (non-transient), the following must be observed:
    ATmega48PA/88PA/168PA/328P:
    1] The sum of all IOL, for ports C0 - C5, ADC7, ADC6 should not exceed 100 mA.
    2] The sum of all IOL, for ports B0 - B5, D5 - D7, XTAL1, XTAL2 should not exceed 100 mA.
    3] The sum of all IOL, for ports D0 - D4, RESET should not exceed 100 mA.
    If IOL exceeds the test condition, VOL may exceed the related specification. Pins are not guaranteed to sink current greater than the listed test condition.
  2. Although each I/O port can source more than the test conditions (20 mA at VCC = 5V, 10 mA at VCC = 3V) under steady state conditions (non-transient), the following must be observed:
    ATmega48PA/88PA/168PA/328P:
    1] The sum of all IOH, for ports C0 - C5, D0- D4, ADC7, RESET should not exceed 150 mA.
    2] The sum of all IOH, for ports B0 - B5, D5 - D7, ADC6, XTAL1, XTAL2 should not exceed 150 mA.
    If IIOH exceeds the test condition, VOH may exceed the related specification. Pins are not guaranteed to source current greater than the listed test condition.

und

B (digital pin 8 to 13)
C (analog input pins)
D (digital pins 0 to 7)

Der Strom der in einen Eingang fließt hängt von der angelegten Spannung und vom Innenwiderstand des Eingangs ab. Arduino hat einen Eingangswiderstand von über 5MOhm, das heißt es fließen weniger als 1µA (1 millionstel Ampere).
Es ist egal wieviel Strom das Netzteil oder die Batterie liefern kann. es fleißt immer nur ein sehr kleiner Strom.
Es ist sicher nicht sinnvoll ein zu großes Netzteil zu nehmen (zB ein PC Netzteil mit 500W) da diese entsprechend teuer sind und auch verhältnismäßig viel Leerlaufstrom verbrauchen.

Grüße Uwe