-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_feit.yaml
37 lines (32 loc) · 1.1 KB
/
sample_feit.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
# Uses custom component from
# https://github.com/hass-emulated-hue/esphome-components
substitutions:
devicename: device_name_without_spaces
real_devicename: Im a cool device
wifi:
manual_ip:
static_ip: 192.168.1.1
gateway: 192.168.1.1
subnet: 255.255.255.0
packages:
device:
refresh: 0s
ref: main
url: https://github.com/alexyao2015/ESPHomeYAML
files:
- yaml/lights/feit/core.yaml
# diyhue: !include yaml/lights/diyhue/core.yaml
# lifx: !include yaml/lights/lifxemulation/core.yaml
# custom_component:
# - lambda: |-
# auto LifxLAN = new lifxUdp();
# LifxLAN->set_bulbLabel( App.get_name().c_str() );
# WiFi.macAddress(LifxLAN->mac);
# LifxLAN->bulbLocationTime = 1600530356000000000;
# LifxLAN->set_bulbLocation( "My Home" );
# LifxLAN->set_bulbLocationGUID( "c019266d-0535-4b57-86ef-aca609ee9915" );
# LifxLAN->bulbGroupTime = 1600358586632000000;
# LifxLAN->set_bulbGroup( "Outside" );
# LifxLAN->set_bulbGroupGUID( "59d16606-0a70-4ba8-8d98-45521a6e1669" );
# LifxLAN->beginUDP();
# return {LifxLAN};