摘要:
项目地址 https://gitee.com/zhudachangs/react-eslint-prettierrc-demo 项目地址gitee 项目配置eslint(验证) + prettierrc(配合vscode自动格式话代码) 一、创建一个项目 # 安装 react 脚手架 npm ins 阅读全文
摘要:
一、.d.ts文件最好在src/typings 目录下,可在tsconfig.json 文件配置 二、vs 监听文件变化,自动编译ts文件 tsconfig.json { "compilerOptions": { "target": "es5", "module": "commonjs", "bas 阅读全文
摘要:
esp8266+mqtt+继电器 使用mqtt 控制led灯 项目地址 https://gitee.com/zhudachangs/esp8266-mqtt-relay #include <Arduino.h> #include <Ticker.h> #include <ESP8266WiFi.h> 阅读全文
摘要:
ESP8266 + MQTT + 土壤湿度传感器 连线 #include <Arduino.h> #include <Ticker.h> #include <ESP8266WiFi.h> #include <PubSubClient.h> #define PIN_AO A0 #define PIN_ 阅读全文
摘要:
ESP8266 + MQTT + SG90(舵机) platformio 连线 ESP8266 MG90S(舵机) GND 棕色 VCC 红色 模拟引脚 橙色 源代码 https://gitee.com/zhudachangs/esp8266-mqtt-sg90.git 注意事项!!!! 舵机角度有 阅读全文
摘要:
esp8266 + MQTT + DHT11(温湿度计) 连线 #include <Arduino.h> #include <ESP8266WiFi.h> #include <PubSubclient.h> #include "DHT.h" #define DHTPIN 4 #define DHTT 阅读全文
摘要:
esp8266 + mqtt + 温度计 上报温度数据 温度接线 ESP8266 温度传感器 GND GND 5V VCC A0 VOUT #include <Arduino.h> #include <ESP8266WiFi.h> #include <PubSubClient.h> // 温度 #i 阅读全文
摘要:
esp8266 + http 使用esp8266发起http请求 #include <Arduino.h> #include <ESP8266WiFi.h> #include <ESP8266HTTPClient.h> #define led_1 2 const char *SSID = "优美屋2 阅读全文
摘要:
ESP32+L298N+MQTT+4G无线远程监控+四驱动小破车 小车源代码 注意修改WIFI 信息 #include <analogWrite.h> #include <WiFi.h> #include <PubSubClient.h> #define led_one 18 // L298N In 阅读全文
摘要:
目录 目录 介绍 准备 连线 代码 代码优化 运行 问题 总结 介绍 使用SN74HC595N 为 ESP8266 扩展 SN74HC595N(8位移位寄存器IC) 1. Vcc 16引脚 电压输入 (必须) 2. GND 地 (必须) 3. OE 需要接GND(必须) 4. MR 需要接高电压(必 阅读全文