RGB(W)-LED WiFi Controller mit ESPHome
- Kategorie:
- hardware
- Unterkategorie:
- pcb
- Pfad:
- templates/hardware/rgbw-led-wifi-controller-12v
Tags:
#pcb#esphome
Zur Übersicht
PCB-Fertigungsdateien (im Download enthalten)
Beschreibung & Dokumentation
RGB(W)-LED WiFi Controller mit ESPHome
Ein kleiner WiFi-LED-Controller für 12 V RGBW Stripes (nicht-adressierbar), speziell geeignet für ESPHome + Home Assistant Integration.
Merkmale
- Unterstützt 12 V RGBW LED-Streifen (nicht adressierbar)
- 4 PWM-Ausgänge: Rot (R), Grün (G), Blau (B)...
Projekt-Assets (2)
Grafiken (2)

rgb-controller.jpg
307.3 KB

rgbw-schaltplan.png
149.3 KB
Code-Varianten
Haupt-KonfigurationStandard
Tipp: Markieren & ⌘/Ctrl + C zum Kopierenconfiguration.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
esphome:
name: rgb_youtube
platform: ESP8266
board: nodemcuv2
wifi:
ssid: !secret WLanSSID
password: !secret WLanPassword
ap:
ssid: "RGB Buero"
password: "gWef1LCbEILB"
captive_portal:
logger:
api:
password: !secret HA_API_Password
ota:
password: !secret HA_OTA_Password
light:
- platform: rgb
name: "SmartHome yourself RGB"
red: rgb_shys_1
green: rgb_shys_2
blue: rgb_shys_3
white: rgb_shys_4
output:
- platform: esp8266_pwm
id: rgb_shys_1
pin: D5
- platform: esp8266_pwm
id: rgb_shys_2
pin: D6
- platform: esp8266_pwm
id: rgb_shys_3
pin: D2
- platform: esp8266_pwm
id: rgb_shys_4
pin: D1