随笔分类 -  ESP32

摘要:使用Lora模块SX1278实现两块ESP8266之间的无线通讯 - Arduino专区 - 一板网电子技术论坛 (yiboard.com) 阅读全文
posted @ 2022-06-28 14:44 天气之子A 阅读(66) 评论(0) 推荐(0)
摘要:快速上手CH340G USB转串口芯片,并了解CH340系列。在面包板搭建一个单片机下载器【IC原来如此】_哔哩哔哩_bilibili 阅读全文
posted @ 2021-09-23 14:41 天气之子A 阅读(318) 评论(0) 推荐(0)
摘要:Arduino MQTT库PubSubClient的大文本发送与接收方法_面向baidu的程序员-CSDN博客_pubsubclient 深入学习Arduino PubSubClient MQTT库_单片机菜鸟哥的博客-CSDN博客_pubsubclient 阅读全文
posted @ 2021-06-24 11:47 天气之子A 阅读(537) 评论(0) 推荐(0)
摘要:参考1:https://learn.adafruit.com/using-melexis-mlx90614-non-contact-sensors/wiring-and-test 参考2:https://learn.adafruit.com/using-melexis-mlx90614-non-co 阅读全文
posted @ 2021-03-04 14:17 天气之子A 阅读(276) 评论(0) 推荐(0)
摘要:太极创客:http://www.taichi-maker.com/homepage/reference-index/arduino-library-index/wire-library/ 获取从设备的I2C的地址:https://playground.arduino.cc/Main/I2cScann 阅读全文
posted @ 2021-03-02 14:51 天气之子A 阅读(210) 评论(0) 推荐(0)
摘要:重要链接:http://www.piaoyi.org/iot/espressif-ESP8266-MQTT-AT.html(印象笔记中有Arduino_8266) 乐鑫固件官网:https://www.espressif.com/zh-hans/support/download/at 固件下载软件: 阅读全文
posted @ 2021-03-01 17:25 天气之子A 阅读(389) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/d521000121/article/details/70196896 ESP8266刷不同固件后,有时会出现反复启动的问题,可能是FLASH里有未擦除干净的区域。 网上有很多清除方法,基本都是介绍在Python环境下擦除FLASH,对于菜鸟来说有点 阅读全文
posted @ 2020-12-31 14:21 天气之子A 阅读(1453) 评论(0) 推荐(0)
摘要:由于ESP32按键重置配网不行 ,可以通过mdns来指定主机名,主机名可以再写一个网页来指定,通过webserver来重置网络。 阅读全文
posted @ 2020-12-29 13:50 天气之子A 阅读(1808) 评论(0) 推荐(0)
摘要:github链接:https://github.com/lorol/LITTLEFS SPIFFS 弃用警告:https://arduino-esp8266.readthedocs.io/en/latest/filesystem.html 阅读全文
posted @ 2020-12-29 10:03 天气之子A 阅读(1698) 评论(0) 推荐(0)
摘要:github:https://docs.espressif.com/projects/esp-idf/zh_CN/latest/esp32/languages.html ESP-IDF 编程指导(中文版) ESP32的板载灯GPIO2 阅读全文
posted @ 2020-12-27 11:53 天气之子A 阅读(346) 评论(0) 推荐(0)
摘要:参考:https://www.qutaojiao.com/8043.html ESP8266的HTTP请求:http://www.taichi-maker.com/homepage/iot-development/iot-dev-reference/esp8266-c-plus-plus-refer 阅读全文
posted @ 2020-12-27 11:14 天气之子A 阅读(2684) 评论(0) 推荐(0)
摘要:参考:https://blog.csdn.net/finedayforu/article/details/108465009 TSR , threshold) ESP32专门提供了电容触摸传感器的功能, 共有T0,T2~T9 共 9个touch传感器可用.分别对应引脚4、2、15、13、12、14、 阅读全文
posted @ 2020-12-26 13:45 天气之子A 阅读(882) 评论(0) 推荐(0)
摘要:参考:cnblogs.com/sam-uncle/p/10979049.html Arduino中NVS的库:https://github.com/TridentTD/TridentTD_ESP32NVS 阅读全文
posted @ 2020-12-26 10:57 天气之子A 阅读(731) 评论(0) 推荐(0)
摘要:参考链接 WiFi.mode(WIFI_STA); WiFi.setSleep(false); //关闭STA模式下wifi休眠,提高响应速度 WiFi.begin(ssid, password); //来源 目的 使用ESP32一般是为了它的WiFi功能,使用这块功能最基本的就是建立/连接网络这些 阅读全文
posted @ 2020-12-20 14:59 天气之子A 阅读(1430) 评论(0) 推荐(0)
摘要:一. 蓝牙基础知识 1. 蓝牙4.0和BLE的区分 通常在了解一点蓝牙的朋友看来,往往将BLE等同于蓝牙4.0,其实不然。 蓝牙4.0是协议,4.0是协议版本号,蓝牙4.0是2010年6月由SIG(Special Interest Group)发布的蓝牙标准,它有2种模式: BLE(Bluetoot 阅读全文
posted @ 2020-12-17 15:42 天气之子A 阅读(3924) 评论(0) 推荐(0)
摘要:建立网络(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)