随笔分类 - ESP
摘要:> esp-idf的版本是V4.4.2 ## idf menuconfig使能片外Flash  ## idf bu
阅读全文
摘要:- esp-idf版本 - tag-V4.4.2 - 示例路径 - examples/wifi/iperf ## iperf_example_main.c(修改后的版本) ```c /* Wi-Fi iperf Example This example code is in the Public D
阅读全文
摘要:## 示例用的文档及链接 1. US Dev Dashboard(查看oem-id和oem-key) https://dashboard-dev.aylanetworks.com/ 1. Ayla API Reference(绑定用户,设备和Ayla云) https://docs.aylanetwo
阅读全文
摘要:# [ESP] 私有版Rainmaker User Mapping ## 1. 设备烧录的程序rainmaker自带gpio示例 > 我这里是自己的工程,可以参照 1. idf.py set-target esp32 2. idf.py build 3. idf.py -p /dev/ttyUSB0
阅读全文
摘要:# ESP-IDF BLE配网(BLE + GATT Server)代备注 * ESP-IDF的版本是V5.0 * 使用 BLE 配网时,为了允许服务发现,必须在开始配置之前初始化 mDNS。 * protocomm_security 一共有3个选项,这里只说**protocomm_security
阅读全文
摘要:## 报错信息 ```shell xtensa-esp32-elf-gcc is not a full path and was not found in the PATH. ``` ## 解决办法 1. 找到**esp-idf**的**export.sh**路径,如:**/home/xxx/esp
阅读全文
摘要:# ESP-IDF WiFi配网(SoftAP+HTTPD)代码备注 主要是为了方便了解实际代码层面的配网协议是什么样的,所以文档记录的基本上是代码片段。 * ESP-IDF的版本是V5.0 * 使用 SoftAP 传输时,为了允许服务发现,必须在开始配置之前初始化 mDNS。 * protocom
阅读全文