Skip to content
This repository was archived by the owner on Oct 31, 2020. It is now read-only.

Add FEIT A19 Smart RGB + Warm/Cold White Bulb #28

Merged
merged 2 commits into from
Oct 17, 2019
Merged
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
48 changes: 48 additions & 0 deletions _devices/Feit-A19-OM60-RGBW-CA-AG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: Feit A19 OM60-RGBW-CA-CR
date-published: 2019-10-17
type: light
standard: us
---

## Basic Configuration for pure warm/cold white

```yaml
sm16716:
data_pin: GPIO14
clock_pin: GPIO4
num_channels: 3
num_chips: 1

output:
- platform: sm16716
id: output_red
channel: 0
power_supply: rgb_power
- platform: sm16716
id: output_green
channel: 1
power_supply: rgb_power
- platform: sm16716
id: output_blue
channel: 2
power_supply: rgb_power
- platform: esp8266_pwm
id: output_cold_white
pin: GPIO5
- platform: esp8266_pwm
id: output_warm_white
pin: GPIO12

light:
- platform: cwww
name: $devicename
cold_white: output_cold_white
warm_white: output_warm_white
cold_white_color_temperature: 6500 K
warm_white_color_temperature: 2700 K

power_supply:
- id: rgb_power
pin: GPIO13
```