Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/he0119/smart-home-device

智慧家庭的设备
https://github.com/he0119/smart-home-device

arduino esp32 esp8266 smart-home

Last synced: 24 days ago
JSON representation

智慧家庭的设备

Awesome Lists containing this project

README

        

# Smart Home Device

智慧家庭的设备

## 自动浇水

家里使用的自动浇水设备

## 配置 cli

```shell
arduino-cli core update-index
arduino-cli lib update-index
```

## OTA

```shell
# esp8266
arduino-cli compile --build-property build.extra_flags="-DENABLE_DEBUG -DESP8266" --profile esp8266 -e ./autowatering/autowatering.ino
# esp32
arduino-cli compile --build-property build.defines=-DENABLE_DEBUG --profile esp32 -e ./autowatering/autowatering.ino
# 上传
espota.py -i 192.168.31.x -p 8266 --auth= -f autowatering.ino.bin
```