Untitled
unknown
plain_text
2 years ago
177 B
6
Indexable
const int pwm = 13;
void setup() {
pinMode(pwm, OUTPUT);
}
void loop() {
digitalWrite(pwm, HIGH);
delay(1);
digitalWrite(pwm, LOW);
delay(19);
}Editor is loading...