devices.esphome.io

Arlec Smart 2m/5m LED Strip Light

Arlec Smart 2m/5m LED Strip Light

Device Type: light
Electrical Standard: au
Board: esp8266

General Notes

This configuration is for the Arlec Smart 2m LED Strip Light and Arlec Smart 5m LED Strip Light which comes as a colour changing LED strip with controller and transformer.

Arlec Smart 5m LED Strip Light

GPIO Pinout

PinFunction
GPIO4Red Channel
GPIO12Green Channel
GPIO14Blue Channel
GPIO5White Channel

Basic Configuration

esphome:
name: led_strip
esp8266:
board: esp01_1m
# OTA flashing
ota:
- platform: esphome
wifi: # Your Wifi network details
# Enable fallback hotspot in case wifi connection fails
ap:
# Enabling the logging component
logger:
# Enable Home Assistant API
api:
# Enable the captive portal
captive_portal:
light:
- platform: rgbw
name: "LED Strip"
red: output_red
green: output_green
blue: output_blue
white: output_white
restore_mode: RESTORE_DEFAULT_OFF
output:
- platform: esp8266_pwm
id: output_red
pin: GPIO4
- platform: esp8266_pwm
id: output_green
pin: GPIO12
- platform: esp8266_pwm
id: output_blue
pin: GPIO14
- platform: esp8266_pwm
id: output_white
pin: GPIO5
Edit this page on GitHub