Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- esphome:
- name: downlight01
- platform: ESP8266
- board: esp01_1m
- wifi:
- ssid: "YOUR SSID"
- password: "YOUR WIFI PASSWORD"
- # Enable logging
- logger:
- # Enable Home Assistant API
- api:
- ota:
- my9231:
- data_pin: GPIO13
- clock_pin: GPIO15
- num_channels: 4
- num_chips: 1
- output:
- - platform: my9231
- id: output_blue
- channel: 1
- - platform: my9231
- id: output_red
- channel: 3
- - platform: my9231
- id: output_green
- channel: 2
- - platform: my9231
- id: output_white
- channel: 0
- light:
- - platform: rgbw
- name: Downlight01
- red: output_red
- green: output_green
- blue: output_blue
- white: output_white
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement