Hello everyone.
I have received my Arduino Micro today and wanted to play around with 3 LED I have found lying around.
So I connected the 3 LED to Pin 2,3 and 4 with the following code.
void setup() {
// put your setup code here, to run once:
pinMode(2, OUTPUT);
pinMode(3, OUTPUT);
pinMode(4, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(2, HIGH);
digitalWrite(4, HIGH);
digitalWrite(3, HIGH);
}
LED 2 and 4 work but not LED 3. So I guess it's another kind of Pin. Then I found this Document http://pighixxx.com/micropdf.pdf
The only problem I got now, is that I have no Idea how to read all the abbreviations.
So which are digital, analog, PWM Serial etc?
If they use a voltmeter to measure the output levels it will tell them if there is a HIGH or LOW.
If it is a HIGH they will know the problem is not with their Arduino or the program.
They might want to make a simple LED logic probe out of an old plastic pen using a LED and a resistor( if they don't have a voltmeter).
Guten Tag,
ich habe das Ganze einmal um einen Platz in meinem Steckboard versetzt und gemerkt, dass dieses defekt war. Respektive die Kontakte nicht mehr gut sind.
Besten Dank für die Hilfe und das nette Aufnehmen in die Welt des Arduinos und dieses Forum