windows环境资源包,包含esp-idf-v3.3.zip、esp32_win32_msys2_environment_and_toolchain-20181001.zip、VSCodeUserSetup-x64-1.38.1.exe 环境搭建参考博文:https://blog.csdn.net/p1279030826/article/details/104062945
2021-12-10 20:23:05 980.22MB ESP32 esp-idf
1
适用于Arduino的ESP32 HomeKit配件协议SDK 该库为运行Arduino框架的ESP32设备提供了正式的 。 注意:此包装器使用的SDK版本由于未经MFi认证而无法用于商业产品,不过请随时在您的爱好项目中使用它! 安装 如果您使用的是 ,请更新platformio.ini文件的依赖关系,或在包含platformio.ini文件的目录中使用pio命令: pio lib install ' ESP32 HomeKit SDK for Arduino ' 上传到PlatformIO的存储库并由Arduino IDE使用的软件包将包含完整的库,因为构建脚本将在打包之前运行。 您可以通过在Releases部分中下载预构建的ZIP文件来使用Arduino IDE来安装库。 用法 可以在examples文件夹中找到实现基本风扇附件的示例。 它基于原始ESP-IDF SDK中的风扇
2021-11-26 06:25:38 8KB iot arduino esp32 arduino-library
1
关于ESP开发入门前置知识的梳理
2021-11-02 17:04:17 37KB ESP ESP-IDF
1
ESP32_-ESP-IDF 编程指南zh_CN-v4.3
2021-10-29 09:57:04 17.31MB esp32
1
esp-idf-rc522 用于将ESP32与MFRC522 RFID读卡器接口的C库 演示版 如何使用 该目录是ESP-IDF组件。 将其克隆(或将其添加为子模块)到项目的components目录中。 例子 # include " esp_log.h " # include " rc522.h " static const char * TAG = " app " ; void tag_handler ( uint8_t * sn) { // serial number is always 5 bytes long ESP_LOGI (TAG, " Tag: %#x %#x %#x %#x %#x " , sn[ 0 ], sn[ 1 ], sn[ 2 ], sn[ 3 ], sn[ 4 ] ); } void app_main ( void ) {
2021-10-25 16:21:40 7KB esp32 card rfid reader
1
esp-idf st7789驱动
2021-10-18 17:06:16 248KB esp esp-idf esp32 st7789
1
esp32-nesemu:用于ESP32的概念验证NES模拟器
2021-10-09 01:43:25 225KB emulator esp32 nes-emulator esp-idf
1
本文以移植 esp-iot-solution 里的 touch_pad_evb 为例。 1. 文件移植 删除 esp-idf 某工程下的 component 与 main 文件夹,将 touch_pad_evb/main 文件夹下的文件挪至 esp-idf 此工程下。 在 esp-idf 此工程下新建 components 文件夹,然后根据 main 文件夹下的 CMakeLists.txt 中的 set(COMPONENT_REQUIRES touchpad led esp_adc_cal ch450 light),将 esp-iot-solution 中对应的 components 拷贝至
2021-09-26 21:33:17 36KB df esp id
1
今天来尝试使用 esp-idf 编译并烧录固件至 ESP32-S2。官方教程如下:ESP32-S2 快速入门。本文将基于旧版 esp-idf 来进行 git 更新,环境配置等操作后再编译烧录程序至 ESP32-S2。 1. 使用 git 更新 esp-idf 至最新版本 首先需要进入到 esp-idf 目录下,然后进行 分支切换 与 版本更新,如下: cd ~/esp/esp-idf git checkout master git pull git submodule update --init --recursive 这样 esp-idf 就是与官方 github 同步的最新版了。可以
2021-09-23 15:16:04 44KB df esp gi
1
esp-idf-st7789 ST7789 esp-idf的驱动 Dmitry Andreev的演示视频。 ESP32的安装 git clone https://github.com/nopnop2002/esp-idf-st7789 cd esp-idf-st7789/ idf.py set-target esp32 idf.py menuconfig idf.py flash ESP32-S2的安装 git clone https://github.com/nopnop2002/esp-idf-st7789 cd esp-idf-st7789/ idf.py set-target esp32s2 idf.py menuconfig idf.py flash 您必须使用menuconfig设置此配置值。 CONFIG_WIDTH CONFIG_HEIGHT CONFIG_OFF
2021-09-15 11:42:01 248KB png jpeg esp32 bmp
1