用于快速配置esp-idf环境 建议使用ubuntu18.04.5
2021-07-07 21:03:07 10KB esp32
1
esp-idf git clone下载下来的全部源码和子模块,网不好的话自己下载很困难
2021-07-05 13:02:18 718MB esp32 esp8266 esp-idf
1
和声2 esp-idf-vs1053 用于 esp-idf 的 VS1053 驱动程序。 您可以收听网络广播。 我从 . 软件要求 esp-idf ver4.1 或更高版本。 硬件要求 VS1003 或 VS1053 开发板。 VS1003(蓝板)和VS1053的性能完全不同。 VS1003(蓝板)速度不快。 安装 git clone https://github.com/nopnop2002/esp-idf-vs1053 cd esp-idf-vs1053 idf.py set-target esp32 idf.py menuconfig idf.py flash monitor 配置 您必须使用 menuconfig 设置此配置值。 CONFIG_ESP_WIFI_SSID 您的 wifi 的 SSID。 CONFIG_ESP_WIFI_PASSWORD 你的wifi密码。 CONFIG_ESP_MAXIMUM_RETRY 连接到 wifi 时的最大重试次数。 CONFIG_GPIO_CS 用于 VS1003 的 XCS 的 GPIO。 CONFIG_GPIO_DCS VS1003
2021-07-01 17:04:23 35KB 系统开源
1
ESP32:简单的HTTP服务器 该项目是一个基本的HTTP服务器,能够接收http请求并做出相应的响应。 默认情况下,它实现以下HTTP动词:GET,POST,PUT,PATCH和DELETE,因此它也可以轻松地成为RESTfull服务器。 该服务器使用ESP32的(ESP-IDF) 入门 这些说明将为您提供在本地计算机上运行并运行的项目的副本,以进行开发和测试。 先决条件 您需要什么东西来安装软件以及如何安装它们 工具链 最新的ESP-IDF 跑步 编译之前,您应该先指定SSID和密码: #define AP_TARGET_SSID "Your SSID" #define AP_TARGET_PASSWORD "Your password" 默认情况下,ESP32设置为使用动态IP。 如果您希望使用静态IP取消注释,请调整以下设置: #define DEVICE_IP
2021-06-23 12:49:09 9KB rest-api esp32 http-server restful-api
1
支持AP模式下与STA模式下的本地局域网OTA功能(不需要OTA服务器)。 demo包含: 1. wifi连接初始化(包括AP模式和STA模式) 2. OTA服务器(端口89):包含固件上传页面URI、POST文件接收URI、当前固件信息查询URI 3. 固件上传html:为原生js实现,post文件上传,上传进度及速度显示,错误显示 4. 固件诊断程序:通过将GPIO2拉高判断固件是否运行成功,若失败则回滚固件 5. BuildVer.sh:编译并根据编译时间生成版本号文件小工具 文章链接:https://blog.csdn.net/l851285812/article/details/116939175
2021-05-17 20:03:06 35.37MB esp32 ota
1
《ESP8266_RTOS_SDKv3读DS18B20温度数据(静态库)》一文的项目
BME280 BME280传感器库 引脚排列 SDA-GPIO18; SCL-GPIO19 CSB em VCC 地址0x77 com SD0 em VCC; 0x76 com SD0 em GND 芯片 SPI最高10MHz,I2C最高3.4MHz 模式: 睡觉 被迫 普通的 数据读出 即使没有测量,读取压力也更快 突发读取未补偿的数据 0xF7至0xFE(温度,按动,嗡嗡声)温度按20bit无符号hum 16bit无符号 赔偿 使用设备特定的校准参数(修整值)E,在生产中设置(不能更改)0x88至0xA1,0xE1至0xF0 第25页中的公式 芯片ID 寄存器地址0xD0预期答案0x60 构型 0xF5、0xF4 博世车手 I2C (kolban的书第271页-使用I2C) ESP-IDF提供了一个I2C驱动程序,该驱动程序使我们可以从C程序高层控制I2C功能,而不必
2021-04-01 11:38:29 1.37MB esp32 esp-idf bme280 C
1
esp-idf-master
2021-03-30 09:07:01 53.85MB esp-32 esp-idf esp-8266 esp-idf-master
1
免费
2021-03-09 09:00:41 334.73MB namespace
1
esp32-freertos-sdk 工具包 See the Getting Started guide links above for a detailed setup guide. This is a quick reference for common commands when working with ESP-IDF projects: Setup Build Environment (See Getting Started guide for a full list of required steps with details.) Install host build dependencies mentioned in Getting Started guide. Add tools/ directory to the PATH Run python -m pip install -r requirements.txt to install Python dependencies Configuring the Project idf.py menuconfig Opens a text-based configuration menu for the project. Use up & down arrow keys to navigate the menu. Use Enter key to go into a submenu, Escape key to go out or to exit. Type ? to see a help screen. Enter key exits the help screen. Use Space key, or Y and N keys to enable (Yes) and disable (No) configuration items with checkboxes "[*]" Pressing ? while highlighting a configuration item displays help about that item. Type / to search the configuration items. Once done configuring, press Escape multiple times to exit and say "Yes" to save the new configuration when prompted. Compiling the Project idf.py build ... will compile app, bootloader and generate a partition table based on the config. Flashing the Project When the build finishes, it will print a command line to use esptool.py to flash the chip. However you can also do this automatically by running: idf.py -p PORT flash Replace PORT with the name of your serial port (like COM3 on Windows, /dev/ttyUSB0 on Linux, or /dev/cu.usbserial-X on MacOS. If the -p option is left out, idf.py flash will try to flash the first available serial port. This will flash the entire project (app, bootloader and partition table) to a new chip. The settings for serial port flashing can be configured with idf.py menuconfig. You don't need to run idf.py build before running idf.py flash, idf.py flash will automatically rebuild anything which needs it. Viewing Serial Output The idf.py monitor target uses the idf_monitor tool to display se
2020-03-11 03:15:02 60.12MB esp32 esp-idf
1