Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mkabilov/esp32c6-zigbee-sample
sample project
https://github.com/mkabilov/esp32c6-zigbee-sample
Last synced: about 1 month ago
JSON representation
sample project
- Host: GitHub
- URL: https://github.com/mkabilov/esp32c6-zigbee-sample
- Owner: mkabilov
- Created: 2024-05-23T13:54:49.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-01T07:27:08.000Z (8 months ago)
- Last Synced: 2024-06-01T08:40:07.035Z (8 months ago)
- Language: C
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ESP32C6 Zigbee sample project
## Wiring
RGB led with common cathode is used,
mind the resistors, they're not shown here```
LED ESP32
--- -----
LED_RED --> GPIO_NUM_21
LED_GREEN --> GPIO_NUM_22
LED_BLUE --> GPIO_NUM_23LED_GND --> GND
```## Set the target to esp32-c6:
```bash
idf.py set-target esp32c6
```## Build:
```bash
idf.py build
```## Erase flash and flash:
```bash
idf.py erase-flash flash
```## and optionally monitor:
```bash
idf.py monitor
```## Zigbee2MQTT side:
put `esp32_lamp.js` into the `/opt/zigbee2mqtt/data` dir,
edit configuration.yaml:
```yaml
...
external_converters:
- esp32_lamp.js
...
```