| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- substitutions:
- devicename: ff-ala-rgb-01
- low_devicename: ff_ala_rgb_01
- friendly_devicename: FF Ala RGB Light 01
- esphome:
- name: $devicename
- friendly_name: ${friendly_devicename}
- bk72xx:
- board: generic-bk7231n-qfn32-tuya
- packages:
- # Enable Home Assistant API
- esphome: !include common/keys.yaml
- diag: !include common/diag.yaml
- # Enable logging
- logger:
- web_server:
- port: 80
-
- wifi:
- ssid: !secret iot_ssid
- password: !secret iot_password
- domain: .int.mmax.cloud
- text_sensor:
- # - platform: debug
- # reset_reason:
- # name: Reset Reason
- - platform: libretiny
- version:
- name: LibreTiny Version
- bp5758d:
- clock_pin: P26
- data_pin: P24
- output:
- - platform: bp5758d
- id: output_red
- channel: 3
- current: 14
- - platform: bp5758d
- id: output_green
- channel: 2
- current: 14
- - platform: bp5758d
- id: output_blue
- channel: 1
- current: 14
- - platform: bp5758d
- id: output_cold
- channel: 5
- current: 29
- - platform: bp5758d
- id: output_warm
- channel: 4
- current: 29
- light:
- - platform: rgbww
- id: light_rgbww
- name: "light"
- color_interlock: true
- cold_white_color_temperature: 6500 K
- warm_white_color_temperature: 2700 K
- red: output_red
- green: output_green
- blue: output_blue
- cold_white: output_cold
- warm_white: output_warm
- restore_mode: RESTORE_AND_ON
- effects:
- - random:
- - strobe:
- - flicker:
- alpha: 50% #The percentage that the last color value should affect the light. More or less the “forget-factor” of an exponential moving average. Defaults to 95%.
- intensity: 50%
|