Search found 3 matches

by doctor567
Thu Nov 02, 2023 3:22 am
Forum: ESP-IDF
Topic: Zigbee Color temperature light
Replies: 4
Views: 1869

Re: Zigbee Color temperature light

In case anyone is trying to do the same thing, I figured it out and here's what I ended up doing. In esp_zb_task(), I stopped trying to create the cluster using esp_zb_color_control_cluster_create(), and instead I just do esp_zb_zcl_attr_list_create(), and then a bunch of esp_zb_color_control_cluste...
by doctor567
Fri Oct 20, 2023 5:23 pm
Forum: ESP-IDF
Topic: Zigbee Color temperature light
Replies: 4
Views: 1869

Zigbee Color temperature light

I am new to ESP-IDF and ESP-Zigbee SDK. I am trying to create a color-temperature-adjustable, dimmable light using ESP-IDF 5.1 on ESP32-H2. Specifically, I am trying to modify the HA Color Dimmable Light example to accept color temperature adjustment (MIRED) instead of RGB (x and y coordinates). I j...
by doctor567
Fri Oct 20, 2023 5:05 pm
Forum: ESP-IDF
Topic: How to implement door switches in Zigbee controllers
Replies: 1
Views: 6112

Re: How to implement door switches in Zigbee controllers

I am new to programming the ESP32 C6 and H2 myself, but have you checked out https://github.com/espressif/esp-zigbee-sdk/tree/main/examples/esp_zigbee_HA_sample/HA_on_off_switch ? It seems like it would be a pretty good starting point. The door sensor would replace the switch in the example. Getting...