I want toCommunicate information to the userusing anLED
Choose platform
void setup() {
setPin(2, OUTPUT);
}
void loop() {
digitalWrite(2, HIGH);
sleep(1000);
digitalWrite(2, LOW);
sleep(1000);
}
Welcome to
Mechatronics made simple
I want toCommunicate information to the userusing anLED
Choose platform
void setup() {
setPin(2, OUTPUT);
}
void loop() {
digitalWrite(2, HIGH);
sleep(1000);
digitalWrite(2, LOW);
sleep(1000);
}