분할코딩

1. 분할코딩 방법 - 다중탭을 이용한 분할 코딩 방법 더보기 (1) 아두이노 IDE -> 화살표 -> 새 탭 (2) 새 탭 이름 작성 (3) 분할 코딩하기 (예시) A 탭 void setup() { } B 탭 void loop() { // put your main code here, to run repeatedly: } - 분할 코딩 전 더보기 int test = 10; void setup() { Serial.begin(9600); Serial.print(test); } void loop() { // put your main code here, to run repeatedly: } - 분할 코딩 후 더보기 A 탭 int test = 10; void setup() { Serial.begin(9600); ..
Eu4ng
'분할코딩' 태그의 글 목록