From 2f1d2c51af6bfdc9daf6ca77aa8274123597738f Mon Sep 17 00:00:00 2001 From: Jens Bretschneider Date: Tue, 4 Aug 2026 23:15:42 +0200 Subject: [PATCH 1/3] Update index.md --- src/docs/devices/Tuya-AP-Future-CCT/index.md | 58 +------------------- 1 file changed, 2 insertions(+), 56 deletions(-) diff --git a/src/docs/devices/Tuya-AP-Future-CCT/index.md b/src/docs/devices/Tuya-AP-Future-CCT/index.md index 00f8a1104..05acd515d 100644 --- a/src/docs/devices/Tuya-AP-Future-CCT/index.md +++ b/src/docs/devices/Tuya-AP-Future-CCT/index.md @@ -14,7 +14,7 @@ Available on [aliexpress](https://www.aliexpress.com/item/4000080534824.html) fr Other versions of this controller are available that do RGB, RGBW, RGBCW. -Flashed using the [Digiblur Clamp method](https://www.digiblur.com/2020/07/free-your-smart-devices-from-cloud.html) +Flashed using the [Digiblur Clamp method](https://digiblur.com/2020/07/16/free-your-smart-devices-from-the-cloud-without-soldering-the-tuya-clamp-for-tasmota-esphome) ![alt text](./Tuya-AP-Future-CCT.png "Tuya AP Future CCT LED Controller") @@ -27,59 +27,5 @@ Flashed using the [Digiblur Clamp method](https://www.digiblur.com/2020/07/free- ## Basic Configuration -```yaml -# Basic Config - -substitutions: - device_name: led_strip - device_description: CCT LED Strip. - friendly_name: CCT LED strip - -esphome: - name: ${device_name} - comment: ${device_description} - -esp8266: - board: esp01_1m - -wifi: - ssid: !secret wifi_ssid - password: !secret wifi_password - - ap: #since we listed an SSID above, this AP mode will only enable if no WiFi connection could be made - ssid: ${friendly_name}_AP - password: !secret wifi_password - -captive_portal: - -# Enable logging -logger: - baudrate: 0 #Disable UART logging - -# Enable Home Assistant API -api: - -ota: - -# Enable web server -web_server: - port: 80 - -# Device Specific Config - -light: - - platform: cwww - name: "CCT Lights" - cold_white: cold_white_channel - warm_white: warm_white_channel - cold_white_color_temperature: 6500 K - warm_white_color_temperature: 2700 K - -output: - - platform: esp8266_pwm - id: warm_white_channel - pin: GPIO13 - - platform: esp8266_pwm - id: cold_white_channel - pin: GPIO5 +```yaml file=config.yaml ``` From df4d78e418f1d66f978785de869d05751d226f8a Mon Sep 17 00:00:00 2001 From: Jens Bretschneider Date: Tue, 4 Aug 2026 23:16:41 +0200 Subject: [PATCH 2/3] Add config.yaml --- .../devices/Tuya-AP-Future-CCT/config.yaml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/docs/devices/Tuya-AP-Future-CCT/config.yaml diff --git a/src/docs/devices/Tuya-AP-Future-CCT/config.yaml b/src/docs/devices/Tuya-AP-Future-CCT/config.yaml new file mode 100644 index 000000000..a4f26b8ac --- /dev/null +++ b/src/docs/devices/Tuya-AP-Future-CCT/config.yaml @@ -0,0 +1,33 @@ +substitutions: + device_name: led_strip + device_description: CCT LED Strip. + friendly_name: CCT LED strip + +esphome: + name: ${device_name} + comment: ${device_description} + +esp8266: + board: esp01_1m + +# Enable logging +logger: + baudrate: 0 #Disable UART logging + +# Device Specific Config + +light: + - platform: cwww + name: "CCT Lights" + cold_white: cold_white_channel + warm_white: warm_white_channel + cold_white_color_temperature: 6500 K + warm_white_color_temperature: 2700 K + +output: + - platform: esp8266_pwm + id: warm_white_channel + pin: GPIO13 + - platform: esp8266_pwm + id: cold_white_channel + pin: GPIO5 From 222ccb976d6ca64c48e573036083c5addda989bf Mon Sep 17 00:00:00 2001 From: Jens Bretschneider Date: Wed, 5 Aug 2026 13:41:18 +0200 Subject: [PATCH 3/3] Update config.yaml --- src/docs/devices/Tuya-AP-Future-CCT/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/devices/Tuya-AP-Future-CCT/config.yaml b/src/docs/devices/Tuya-AP-Future-CCT/config.yaml index a4f26b8ac..5ab751c39 100644 --- a/src/docs/devices/Tuya-AP-Future-CCT/config.yaml +++ b/src/docs/devices/Tuya-AP-Future-CCT/config.yaml @@ -12,7 +12,7 @@ esp8266: # Enable logging logger: - baudrate: 0 #Disable UART logging + baud_rate: 0 #Disable UART logging # Device Specific Config