Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blink on connecting #1

Open
sebastian-meier opened this issue Mar 16, 2023 · 0 comments
Open

blink on connecting #1

sebastian-meier opened this issue Mar 16, 2023 · 0 comments

Comments

@sebastian-meier
Copy link
Member

#define ONBOARD_LED 2

void setup() {
pinMode(ONBOARD_LED,OUTPUT);
}

void loop() {
delay(1000);
digitalWrite(ONBOARD_LED,HIGH);
delay(100);
digitalWrite(ONBOARD_LED,LOW);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant