https://github.com/techchrism/esp32-home-hub
A home hub based around an ESP32 with CO2 detection, remote temperature monitoring, and wake-on-lan functionality
https://github.com/techchrism/esp32-home-hub
arduino esp32
Last synced: about 2 months ago
JSON representation
A home hub based around an ESP32 with CO2 detection, remote temperature monitoring, and wake-on-lan functionality
- Host: GitHub
- URL: https://github.com/techchrism/esp32-home-hub
- Owner: techchrism
- License: mit
- Created: 2023-03-30T02:14:44.000Z (about 3 years ago)
- Default Branch: trunk
- Last Pushed: 2023-03-31T04:20:50.000Z (about 3 years ago)
- Last Synced: 2025-05-17T07:08:13.932Z (about 1 year ago)
- Topics: arduino, esp32
- Language: TypeScript
- Homepage:
- Size: 64.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# ESP32 Home Hub
## Xiaomi Thermometer LYWSD03MMC
Using https://atc1441.github.io/TelinkFlasher.html to flash firmware from https://github.com/atc1441/ATC_MiThermometer
Settings:
- `0xB1` - enable battery display
- `0xFF` - display temperature in F
- `0xA3` - smiley as comfort indicator
- `0xAE` - custom advertising
- `0xFE` `0x06` - advertise every minute
- `0xDF` - save settings to flash
Script:
```javascript
['B1','FF','A3','AE','FE06','DF'].forEach((c,i)=>setTimeout(()=>sendCustomSetting(c),i*1000))
```