https://github.com/luizfranzon/smart-homer
Home automation project with ESP32 and mobile app, controlling lights via API.
https://github.com/luizfranzon/smart-homer
esp32 react-native
Last synced: 5 months ago
JSON representation
Home automation project with ESP32 and mobile app, controlling lights via API.
- Host: GitHub
- URL: https://github.com/luizfranzon/smart-homer
- Owner: luizfranzon
- Created: 2024-08-22T23:19:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-05T21:33:54.000Z (over 1 year ago)
- Last Synced: 2025-08-23T04:29:59.862Z (10 months ago)
- Topics: esp32, react-native
- Language: TypeScript
- Homepage:
- Size: 1.21 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ESP32 API REST + Smart Home App
## ESP32 Routes:
**GET**
/api/lights/
```json
{
"pin16": false,
"pin17": false
}
```
**POST** /api/lights/pin16=1
```json
{
"pin16": true,
"pin17": false
}
```