Node MCU Smart Pot setup loop the setup

  • Slides: 34
Download presentation
Node. MCU를 이용 한 Smart. Pot 제작

Node. MCU를 이용 한 Smart. Pot 제작

setup(), loop() // the setup function runs once when you press reset or power

setup(), loop() // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pin. Mode(LED_BUILTIN, OUTPUT); } // the loop function runs over and void loop() { digital. Write(LED_BUILTIN, HIGH); delay(1000); digital. Write(LED_BUILTIN, LOW); delay(1000); } • setup() : 최초 한번만 실행 • loop() : 무한 반복 실행 over again forever // turn the LED on (HIGH is the voltage level) // wait for a second // turn the LED off by making the voltage LOW // wait for a second

아두이노 예제 1_led. Blink/ledblink. ino

아두이노 예제 1_led. Blink/ledblink. ino

아두이노 예제 2_serial. Monitorserial. Monitor/serial. Monitor. ino

아두이노 예제 2_serial. Monitorserial. Monitor/serial. Monitor. ino

아두이노 예제 3_button/button. ino

아두이노 예제 3_button/button. ino

Node. MCU 개발환경 설정 Node. MCU 보드 플랫폼 추가 Node. MCU 보드 매니저 추가

Node. MCU 개발환경 설정 Node. MCU 보드 플랫폼 추가 Node. MCU 보드 매니저 추가 http: //arduino. esp 8266. com/stable/package_esp 8266 com_index. json

Node. MCU 기본 예제 4_basic. Led. Blinkbasic. Led. Blink/basic. Led. Blink. in o 샘플

Node. MCU 기본 예제 4_basic. Led. Blinkbasic. Led. Blink/basic. Led. Blink. in o 샘플 예제 선택 샘플 예제 코드

Node. MCU 기본 예제 시리얼 모니터 void setup() { // put your setup code

Node. MCU 기본 예제 시리얼 모니터 void setup() { // put your setup code here, to run once: Serial. begin(9600); } void loop() { // put your main code here, to run repeatedly: Serial. print("Hello"); Serial. print(" "); Serial. println("Node. MCU!"); } 시리얼 모니터 선택

Node. MCU 무선통신 - Node. MCU 서버 구현 및 Wi-Fi를 통 신 6_led. Wifiled.

Node. MCU 무선통신 - Node. MCU 서버 구현 및 Wi-Fi를 통 신 6_led. Wifiled. Wifi/led. Wifi. ino

Node. MCU 무선통신 - Node. MCU 서버 구현 및 Wi-Fi를 통 신 6_led. Wifiled.

Node. MCU 무선통신 - Node. MCU 서버 구현 및 Wi-Fi를 통 신 6_led. Wifiled. Wifi/led. Wifi. ino Serial 5 V GND

Node. MCU 무선통신 - Node. MCU 서버 구현 및 Wi-Fi를 통 신 7_smart. Plugsmart.

Node. MCU 무선통신 - Node. MCU 서버 구현 및 Wi-Fi를 통 신 7_smart. Plugsmart. Plug/smart. Plug. ino

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino https: //github. com/blynkkk

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino https: //github. com/blynkkk

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino https: //www. blynk. cc/getting-started/

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino https: //www. blynk. cc/getting-started/

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino https: //www. blynk. cc/getting-started/

클라우드 서비스 이용 - Blynk 8_smart. Plugsmart. Plug/smart. Plug. ino https: //www. blynk. cc/getting-started/