[esp32][zigbee][HA_on_off_light][1] 코드 분석
: ESP32 Zigbee HA_on_off_light 프로젝트와 HA_on_off_switch 프로젝트를 분석해 보았습니다. Zigbee 처음이라 틀린부분 댓글로 알려주세요.▶ 초기화 코드void app_main(void){ esp_zb_platform_config_t config = { .radio_config = ESP_ZB_DEFAULT_RADIO_CONFIG(), .host_config = ESP_ZB_DEFAULT_HOST_CONFIG(), }; esp_zb_platform_config(&config); xTaskCreate(esp_zb_task, "Zigbee_main", 4096, NULL, 5, NULL);}#define E..