Skip to content
Snippets Groups Projects
Commit efb2265d authored by yujin lee's avatar yujin lee
Browse files

Arduino src

parent 980b9c56
No related branches found
No related tags found
No related merge requests found
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH);
delay(1000); // Wait for 1000 millisecond(s)
digitalWrite(13, LOW);
delay(1000); // Wait for 1000 millisecond(s)
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment