Created
February 21, 2020 00:14
-
-
Save takataka5614/91664468fada4c257cab060c10d000a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************/ | |
/* 最もシンプルなLチカ */ | |
/*********************************************/ | |
#define OnB_LED 2 | |
void setup() { | |
pinMode(OnB_LED, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(OnB_LED, HIGH); | |
delay(1000); | |
digitalWrite(OnB_LED, LOW); | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment