mirror of
https://github.com/esphome/esphome.git
synced 2024-12-26 07:24:54 +01:00
code formatting
This commit is contained in:
parent
752cd75f46
commit
5e0ac7022e
8 changed files with 15 additions and 9 deletions
|
@ -1,9 +1,8 @@
|
||||||
import esphome.codegen as cg
|
import esphome.codegen as cg
|
||||||
import esphome.config_validation as cv
|
import esphome.config_validation as cv
|
||||||
from esphome import automation, pins
|
from esphome import pins
|
||||||
from esphome.components import sensor
|
from esphome.components import sensor
|
||||||
from esphome.components import spi
|
from esphome.components import spi
|
||||||
from esphome.automation import maybe_simple_id
|
|
||||||
from esphome.components import remote_base
|
from esphome.components import remote_base
|
||||||
from esphome.const import (
|
from esphome.const import (
|
||||||
CONF_ID,
|
CONF_ID,
|
||||||
|
@ -56,6 +55,7 @@ CONFIG_SCHEMA = (
|
||||||
.extend(spi.spi_device_schema(cs_pin_required=True))
|
.extend(spi.spi_device_schema(cs_pin_required=True))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
async def to_code(config):
|
async def to_code(config):
|
||||||
var = cg.new_Pvariable(config[CONF_ID])
|
var = cg.new_Pvariable(config[CONF_ID])
|
||||||
await cg.register_component(var, config)
|
await cg.register_component(var, config)
|
||||||
|
@ -73,6 +73,7 @@ async def to_code(config):
|
||||||
lqi = await sensor.new_sensor(config[CONF_LQI])
|
lqi = await sensor.new_sensor(config[CONF_LQI])
|
||||||
cg.add(var.set_config_lqi_sensor(lqi))
|
cg.add(var.set_config_lqi_sensor(lqi))
|
||||||
|
|
||||||
|
|
||||||
CC1101RawAction = ns.class_("CC1101RawAction", remote_base.RemoteTransmitterActionBase)
|
CC1101RawAction = ns.class_("CC1101RawAction", remote_base.RemoteTransmitterActionBase)
|
||||||
|
|
||||||
CC1101_TRANSMIT_SCHEMA = (
|
CC1101_TRANSMIT_SCHEMA = (
|
||||||
|
@ -86,10 +87,14 @@ CC1101_TRANSMIT_SCHEMA = (
|
||||||
.extend(remote_base.RC_SWITCH_TRANSMITTER)
|
.extend(remote_base.RC_SWITCH_TRANSMITTER)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@remote_base.register_action("cc1101", CC1101RawAction, CC1101_TRANSMIT_SCHEMA)
|
@remote_base.register_action("cc1101", CC1101RawAction, CC1101_TRANSMIT_SCHEMA)
|
||||||
async def cc1101_action(var, config, args):
|
async def cc1101_action(var, config, args):
|
||||||
proto = await cg.templatable(
|
proto = await cg.templatable(
|
||||||
config[CONF_PROTOCOL], args, remote_base.RCSwitchBase, to_exp=remote_base.build_rc_switch_protocol
|
config[CONF_PROTOCOL],
|
||||||
|
args,
|
||||||
|
remote_base.RCSwitchBase,
|
||||||
|
to_exp=remote_base.build_rc_switch_protocol,
|
||||||
)
|
)
|
||||||
cg.add(var.set_protocol(proto))
|
cg.add(var.set_protocol(proto))
|
||||||
cg.add(var.set_code(await cg.templatable(config[CONF_CODE], args, cg.std_string)))
|
cg.add(var.set_code(await cg.templatable(config[CONF_CODE], args, cg.std_string)))
|
||||||
|
|
|
@ -61,4 +61,4 @@ button:
|
||||||
one: [2, 1]
|
one: [2, 1]
|
||||||
inverted: true
|
inverted: true
|
||||||
repeat:
|
repeat:
|
||||||
times: 10
|
times: 10
|
||||||
|
|
|
@ -61,4 +61,4 @@ button:
|
||||||
one: [2, 1]
|
one: [2, 1]
|
||||||
inverted: true
|
inverted: true
|
||||||
repeat:
|
repeat:
|
||||||
times: 10
|
times: 10
|
||||||
|
|
|
@ -52,4 +52,4 @@ button:
|
||||||
one: [2, 1]
|
one: [2, 1]
|
||||||
inverted: true
|
inverted: true
|
||||||
repeat:
|
repeat:
|
||||||
times: 10
|
times: 10
|
||||||
|
|
|
@ -52,4 +52,4 @@ button:
|
||||||
one: [2, 1]
|
one: [2, 1]
|
||||||
inverted: true
|
inverted: true
|
||||||
repeat:
|
repeat:
|
||||||
times: 10
|
times: 10
|
||||||
|
|
|
@ -52,4 +52,4 @@ button:
|
||||||
one: [2, 1]
|
one: [2, 1]
|
||||||
inverted: true
|
inverted: true
|
||||||
repeat:
|
repeat:
|
||||||
times: 10
|
times: 10
|
||||||
|
|
|
@ -52,4 +52,4 @@ button:
|
||||||
one: [2, 1]
|
one: [2, 1]
|
||||||
inverted: true
|
inverted: true
|
||||||
repeat:
|
repeat:
|
||||||
times: 10
|
times: 10
|
||||||
|
|
|
@ -60,3 +60,4 @@ button:
|
||||||
inverted: true
|
inverted: true
|
||||||
repeat:
|
repeat:
|
||||||
times: 10
|
times: 10
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue