摘要:
1.百度网盘 对于一个经常需要在百度网盘下载东西,又不想付费加速还想白嫖的人来说,这东西就是福利啊 这个都有吧?没有也没关系先看小的我演示一遍演示完了你就会了,把它打开然后和我这样做🤲 Tampermonkey 我是安装过了,可以跟着安装Tampermonkey这个不要觉得麻烦想想能白嫖就不麻烦了 阅读全文
摘要:
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 阅读全文
摘要:
基于乐鑫官网 1.先自己搭建好idf工具 2.打开 3.进入到esp-at的目录 python build.py install python build.py menuconfig 阅读全文
摘要:
ML on esp32 with micopython 前提条件micopython固件 esp32 、thonny IDE import utime from machine import Timer, Pin, I2C from drivers.mpu6500 import MPU6500, S 阅读全文
摘要:
系统需求分析 目前很多信息技术业界大佬都把物联网视作继个人计算机、互联网之后,当今世界最具发展潜力的产业之一。物联网作为继互联网之后新一代的连接方式,正在有力带动传统产业转型升级,引领战略性新兴产业发展,推动社会生产和经济发展方式的深度变革。MQTT是教学中常见的物联网协议之一,MQTT协议是近几年 阅读全文
摘要:
可能需要看一些esp的pwm通道配置的文档 #include "Arduino.h" //蓝牙 #include "BluetoothSerial.h" #if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) #er 阅读全文
摘要:
1.通过连接蓝牙再用手机app 去配置 wifi 2.配置wifi 的格式 是json 格式 {'ssid':'11111','password':'11111'} /*********************导入库*************************/ #include <Bluet 阅读全文
摘要:
#include <Arduino.h> #include "BluetoothSerial.h" BluetoothSerial bt1; void setup() { Serial.begin(115200); delay(5000); bt1.begin("ESP32BLUE"); Seria 阅读全文
摘要:
实现功能前没有预测过后期情况导致蹦盘 1.蓝牙透传官方示例 #include "BluetoothSerial.h" #if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) #error Bluetooth is n 阅读全文
摘要:
做这个的目地是获取mpu9250数据 按键处理按键按下 mcu暂停读取数据两秒 在loop 循环里面开始就是结束结束就是开始 用到这几库 // //mpu9250 配置 #include "MPU9250.h" // an MPU9250 object with the MPU-9250 senso 阅读全文