mirror of
https://github.com/esphome/esphome.git
synced 2024-11-25 00:18:11 +01:00
parent
667457989e
commit
a07a835eb0
1 changed files with 22 additions and 1 deletions
|
@ -122,6 +122,13 @@ sensor:
|
|||
name: Color Temperature
|
||||
integration_time: 700ms
|
||||
gain: 60x
|
||||
- platform: custom
|
||||
lambda: |-
|
||||
auto s = new sensor::Sensor();
|
||||
return {s};
|
||||
sensors:
|
||||
- id: custom_sensor
|
||||
name: Custom Sensor
|
||||
|
||||
time:
|
||||
- platform: homeassistant
|
||||
|
@ -178,6 +185,13 @@ binary_sensor:
|
|||
- platform: ttp229_lsf
|
||||
channel: 1
|
||||
name: TTP229 LSF Test
|
||||
- platform: custom
|
||||
lambda: |-
|
||||
auto s = new binary_sensor::BinarySensor();
|
||||
return {s};
|
||||
sensors:
|
||||
- id: custom_binary_sensor
|
||||
name: Custom Binary Sensor
|
||||
|
||||
remote_receiver:
|
||||
pin: GPIO12
|
||||
|
@ -233,6 +247,13 @@ switch:
|
|||
id: gpio_switch2
|
||||
pin: GPIO1
|
||||
interlock: *interlock
|
||||
- platform: custom
|
||||
lambda: |-
|
||||
auto s = new switch::Switch();
|
||||
return {s};
|
||||
sensors:
|
||||
- id: custom_switch
|
||||
name: Custom Switch
|
||||
|
||||
stepper:
|
||||
- platform: uln2003
|
||||
|
|
Loading…
Reference in a new issue