随笔分类 -  Arduino

摘要:建立网络(AP) 基础使用 建立网络只需两步: 引用WiFi库#include <WiFi.h>; 启动AP网络WiFi.softAP(ssid); 将下面代码上传到模块中: #include <WiFi.h> void setup() { WiFi.softAP("ESP32_AP_TEST"); 阅读全文
posted @ 2020-12-16 18:05 天气之子A 阅读(1102) 评论(0) 推荐(0)
摘要:开发文档:https://arduino-esp8266.readthedocs.io/en/latest/index.html 源码:https://github.com/esp8266/Arduino LED灯:如果不知道板载灯的GPIO脚,看这里 #define LED_PIN D4 void 阅读全文
posted @ 2020-12-14 15:17 天气之子A 阅读(2164) 评论(0) 推荐(0)