int lednano = 2;
void etup() {
// put your setup code here, to run once:
pinMode(lednano, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(lednano, HIGH);
}
int lednano = 2;
void etup() {
// put your setup code here, to run once:
pinMode(lednano, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(lednano, HIGH);
}