摘要: 1.固件确认 YED-D724W模块 图一 模块介绍 由于模组有AT固件和DTu固件区分,所以在使用之前,需要确认固件版本。 1 有LED的设备确认方法: 去掉设备的SIM卡,然后上电设备。观察NET LED和RDY LED。如果2个LED同时亮5秒灭5秒,表示是DTU固件,否者不是。如果只有一个N 阅读全文
posted @ 2023-02-07 19:04 Yang-blackSun 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1.把AT 指令写入 flash 区内 https://docs.espressif.com/projects/esp-idf/zh_CN/release-v4.3/esp32/api-reference/storage/nvs_flash.html 2.编写python 程序直接烧进去 https 阅读全文
posted @ 2023-02-07 18:59 Yang-blackSun 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 基于乐鑫官网 1.先自己搭建好idf工具 2.打开 3.进入到esp-at的目录 python build.py install python build.py menuconfig 阅读全文
posted @ 2023-02-07 18:58 Yang-blackSun 阅读(22) 评论(0) 推荐(0) 编辑
摘要: ML on esp32 with micopython 前提条件micopython固件 esp32 、thonny IDE import utime from machine import Timer, Pin, I2C from drivers.mpu6500 import MPU6500, S 阅读全文
posted @ 2023-02-07 18:48 Yang-blackSun 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 系统需求分析 目前很多信息技术业界大佬都把物联网视作继个人计算机、互联网之后,当今世界最具发展潜力的产业之一。物联网作为继互联网之后新一代的连接方式,正在有力带动传统产业转型升级,引领战略性新兴产业发展,推动社会生产和经济发展方式的深度变革。MQTT是教学中常见的物联网协议之一,MQTT协议是近几年 阅读全文
posted @ 2023-02-07 18:46 Yang-blackSun 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 可能需要看一些esp的pwm通道配置的文档 #include "Arduino.h" //蓝牙 #include "BluetoothSerial.h" #if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) #er 阅读全文
posted @ 2023-02-07 18:44 Yang-blackSun 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.通过连接蓝牙再用手机app 去配置 wifi 2.配置wifi 的格式 是json 格式 {'ssid':'11111','password':'11111'} /*********************导入库*************************/ #include <Bluet 阅读全文
posted @ 2023-02-07 18:42 Yang-blackSun 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #include <Arduino.h> #include "BluetoothSerial.h" BluetoothSerial bt1; void setup() { Serial.begin(115200); delay(5000); bt1.begin("ESP32BLUE"); Seria 阅读全文
posted @ 2023-02-07 18:39 Yang-blackSun 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实现功能前没有预测过后期情况导致蹦盘 1.蓝牙透传官方示例 #include "BluetoothSerial.h" #if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) #error Bluetooth is n 阅读全文
posted @ 2023-02-07 18:37 Yang-blackSun 阅读(7) 评论(0) 推荐(0) 编辑
1 3