Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- ENDER-3
- 3D프린터
- 아두이노 문법
- 3D 프린트
- 아두이노 IDE
- 엔더
- reference
- 3D프린트
- 3dprinter
- Arduino IDE
- Arduino Reference
- ender 3
- 3d printer
- 3d
- 3D 프린터
- 아두이노 구조
- PLA
- 프린터
- Arduino
- 아두이노 레퍼런스
- 필라멘트
- ender3
- printer
- 아두이노 소프트웨어
- 3DPrint
- 아두이노
- 3d print
- 프린트
- 엔더3
Archives
- Today
- Total
목록loop() (1)
키위백과의 잡동사니
STRUCTURE : loop()
loop() 설명(Description)변수를 초기화하고 설정하는 setup()함수가 실행된 뒤 실행됩니다. loop()함수는 이름에서 알 수 있듯이 루프를 반복하여 프로그램이 변경하고 응답할 수 있도록 합니다. 그것을 사용하여 Arduino 보드를 능동적으로 제어하십시오. 예제 코드(Example Code)int buttonPin = 3; // setup initializes serial and the button pin void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); } // loop checks the button pin each time, // and will send serial if it is pressed void loop() {..
아두이노/참조(Reference)
2018. 4. 10. 17:59