09 2022 档案
摘要:##概述 整理下学习ESP8266期间有价值的资料 ##乐鑫官网文档中心 主要参考资料来源,一手资料最有价值,另外官网还有选型工具、产品对比等实用工具 https://www.espressif.com.cn/zh-hans/support/documents/technical-documents
阅读全文
摘要:#概述 DHT11模块使用一根data线实现信号触发以及数据反馈,信号格式参考如下 https://zhuanlan.zhihu.com/p/347904660 本文使用GPIO中断的方式采集反馈数据 知识点:GPIO、中断、事件组、定时器 #平台 芯片 ESP8266EX 模组 ESP-12F 开
阅读全文
摘要:#include <stdio.h> #include <string.h> #include <stdlib.h> #include <stdint.h> #include <stdbool.h> #include "driver/gpio.h" #include "driver/hw_timer
阅读全文