mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 23:18:10 +01:00
Fix indentation of write_lambda for modbus_controller number (#2722)
This commit is contained in:
parent
d99c5ed890
commit
7333123ba4
1 changed files with 11 additions and 11 deletions
|
@ -129,14 +129,14 @@ async def to_code(config):
|
||||||
return_type=cg.optional.template(float),
|
return_type=cg.optional.template(float),
|
||||||
)
|
)
|
||||||
cg.add(var.set_template(template_))
|
cg.add(var.set_template(template_))
|
||||||
if CONF_WRITE_LAMBDA in config:
|
if CONF_WRITE_LAMBDA in config:
|
||||||
template_ = await cg.process_lambda(
|
template_ = await cg.process_lambda(
|
||||||
config[CONF_WRITE_LAMBDA],
|
config[CONF_WRITE_LAMBDA],
|
||||||
[
|
[
|
||||||
(ModbusNumber.operator("ptr"), "item"),
|
(ModbusNumber.operator("ptr"), "item"),
|
||||||
(cg.float_, "x"),
|
(cg.float_, "x"),
|
||||||
(cg.std_vector.template(cg.uint16).operator("ref"), "payload"),
|
(cg.std_vector.template(cg.uint16).operator("ref"), "payload"),
|
||||||
],
|
],
|
||||||
return_type=cg.optional.template(float),
|
return_type=cg.optional.template(float),
|
||||||
)
|
)
|
||||||
cg.add(var.set_write_template(template_))
|
cg.add(var.set_write_template(template_))
|
||||||
|
|
Loading…
Reference in a new issue