Potenciómetro y LDR. Las entradas analógicas potenciometro.ino 1 2 3 4 5 6 7 8 9 10const int pot = 0; void setup () { Serial.begin(9600); } void loop () { Serial.println(analogRead(pot)); delay(50); }