本站改版新增arduino频道
const char* host = "ESP-OTA"; // Used for MDNS resolution const char* ssid = "xxxxx"; const char* password = "xxxx"; #include <WebOTA.h> // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. init_wifi(ssid, password, host); pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs over and over again forever void loop() { webota.handle(); digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0097029209136963 seconds