Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions src/docs/devices/Tuya-AP-Future-CCT/config.yaml
Original file line number Diff line number Diff line change
@@ -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:
baud_rate: 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
58 changes: 2 additions & 56 deletions src/docs/devices/Tuya-AP-Future-CCT/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand All @@ -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
```
Loading