Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
智慧家庭的设备
- Host: GitHub
- URL: https://github.com/he0119/smart-home-device
- Owner: he0119
- License: mit
- Created: 2020-07-12T09:08:50.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-11T15:37:08.000Z (about 2 months ago)
- Last Synced: 2024-09-12T00:11:38.280Z (about 2 months ago)
- Topics: arduino, esp32, esp8266, smart-home
- Language: C++
- Homepage:
- Size: 55.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```