HIgrow(ESP32 Rev1 WiFi 蓝牙电池 DHT11土壤温度湿度传感器模块)使用指南

Higrow使用指南

作者:coolwaterld

邮箱:[email protected]

安装arduino (windows)

https://downloads.arduino.cc/arduino-1.8.7-windows.exe

 

安装ESP32扩展

https://randomnerdtutorials.com/installing-the-esp32-board-in-arduino-ide-windows-instructions/

1) Open the preferences window from the Arduino IDE. Go to File> Preferences

https://i2.wp.com/randomnerdtutorials.com/wp-content/uploads/2016/12/arduino-ide-open-preferences.png?resize=196%2C340&ssl=1

2) Enter https://dl.espressif.com/dl/package_esp32_index.jsoninto the “Additional Board Manager URLs” field as shown in the figure below. Then, click the “OK” button:

https://i1.wp.com/randomnerdtutorials.com/wp-content/uploads/2018/06/preferences.png?resize=722%2C607&ssl=1

Note: if you already have the ESP8266 boards URL, you can separate the URLs with a comma as follows:

https://dl.espressif.com/dl/package_esp32_index.json, 
http://arduino.esp8266.com/stable/package_esp8266com_index.json

3) Open boards manager. Go to Tools > Board > Boards Manager…

https://i1.wp.com/randomnerdtutorials.com/wp-content/uploads/2018/06/boardsManager.png?resize=628%2C568&ssl=1

4) Search for ESP32 and press install button for the “ESP32 by Espressif Systems“:

https://i1.wp.com/randomnerdtutorials.com/wp-content/uploads/2018/06/installing.png?resize=786%2C443&ssl=1

5) That’s it. It should be installed after a few seconds.

(国内download github内容可能会失败,隔一段时间再试试即可)

Higrow硬件介绍

用于ESP32 Rev1 WiFi&蓝牙电池和DHT11开发板的土壤温度检测模块和湿度传感器模块

 

https://img.alicdn.com/imgextra/i2/858075507/TB2aPojxkomBKNjSZFqXXXtqVXa_!!858075507.jpg

https://img.alicdn.com/imgextra/i1/858075507/TB2BLwIxljTBKNjSZFDXXbVgVXa_!!858075507.jpg

1)介绍

https://www.higrow.tech/

https://hackaday.io/project/25253-higrow-plants-monitoring-sensor

https://github.com/lucafabbri/HiGrow-Arduino-Esp(原版)

https://github.com/LilyGO/higrowopen(改良版)

 

2)购买

https://item.taobao.com/item.htm?spm=a1z09.2.0.0.24252e8dxhxZus&id=577384707552&_u=6lou1pbc76(土壤传感器不需要飞线)

https://it.aliexpress.com/item/ESP32-WIFI-Bluetooth-battery-soil-Moisture-Senson-DHT/32815782900.html

 

 

连接设备到PC

用micro USB线连接设备到PC,micro USB既做供电也做通信(注意higrow的开关需要拨到ON上),在windows设备管理器上COM端口显示出USB to UART Brindge

 

 

下载Higrow程序

https://github.com/LilyGO/higrowopen(改良版)

修改程序:

添加你的wifi的名称和密码

const char* ssid     = "名称";

const char* password = "密码";

 

下载DHT的库文件

搜索DHT,选择DHT sensor Library

注意版本不要选择v1.3.0,可以选1.2.3

按键Install

关于arduino的硬件参数配置

关于烧写

Connecting…..时按住higrow 的boot键才能正确烧写

烧写完成的标志:

 

串口监测程序

串口波特率115200

获得IP地址192.168.3.41,在浏览器中黏贴改地址

猜你喜欢

转载自blog.csdn.net/coolwaterld/article/details/83783013