■ Computer/ㅡArduino
아두이노 - Blink 설명 (아두이노 예제 Basic)
with seok
2020. 3. 23. 22:47
// the setup function runs once when you press reset or power the board // setup함수는 한 번 실행됨 void setup() { // loop함수는 무한 반복됨 } |
또는
int LED=13; //변수LED 설정, 아두이노보드 13번자리
void setup() { // loop함수는 무한 반복됨 } |
728x90