Skip to content

Instantly share code, notes, and snippets.

@ctalkington
Last active November 23, 2021 12:24
Show Gist options
  • Save ctalkington/9c6caf65d7a3f9fee358afab2a88eb05 to your computer and use it in GitHub Desktop.
Save ctalkington/9c6caf65d7a3f9fee358afab2a88eb05 to your computer and use it in GitHub Desktop.
Merkury A21 75W Bulb ESPHome Config (requires v1.14+)
esphome:
name: bulb_75w_rgbw_qpw06
platform: ESP8266
board: esp01_1m
wifi:
ssid: 'YOURWIFISSID'
password: 'YOURWIFIPASSWORD'
logger:
api:
ota:
password: 'YOUROTAPASSWORD'
power_supply:
- id: rgb_power
pin: GPIO13
sm16716:
data_pin: GPIO14
clock_pin: GPIO4
num_channels: 3
num_chips: 1
output:
- platform: esp8266_pwm
pin: GPIO5
frequency: 1000 Hz
id: pwm_white
- platform: sm16716
id: sm16716_red
channel: 2
power_supply: rgb_power
- platform: sm16716
id: sm16716_green
channel: 1
power_supply: rgb_power
- platform: sm16716
id: sm16716_blue
channel: 0
power_supply: rgb_power
light:
- platform: rgbw
name: Bulb
id: bulb_75w_rgbw
red: sm16716_red
green: sm16716_green
blue: sm16716_blue
white: pwm_white
@coneyrabbit
Copy link

Thanks @jokesters, I'll try it out tonight... Didn't get a notification of your mention/response so I'm just seeing this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment