mirror of
https://github.com/esphome/esphome.git
synced 2024-11-28 01:34:18 +01:00
fix some CI reported issue
This commit is contained in:
parent
1a65d45bd8
commit
7c49a80dcc
2 changed files with 8 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
import esphome.codegen as cg
|
||||
import esphome.config_validation as cv
|
||||
from esphome.components import display, spi
|
||||
from esphome import automation
|
||||
import esphome.codegen as cg
|
||||
from esphome.components import display, spi
|
||||
import esphome.config_validation as cv
|
||||
from esphome.const import (
|
||||
CONF_ID,
|
||||
CONF_INTENSITY,
|
||||
|
@ -110,7 +110,9 @@ async def to_code(config):
|
|||
|
||||
|
||||
DisplayInvertAction = max7219_ns.class_("DisplayInvertAction", automation.Action)
|
||||
DisplayVisibilityAction = max7219_ns.class_("DisplayVisibilityAction", automation.Action)
|
||||
DisplayVisibilityAction = max7219_ns.class_(
|
||||
"DisplayVisibilityAction", automation.Action
|
||||
)
|
||||
DisplayReverseAction = max7219_ns.class_("DisplayReverseAction", automation.Action)
|
||||
DisplayIntensityAction = max7219_ns.class_("DisplayIntensityAction", automation.Action)
|
||||
|
||||
|
@ -144,10 +146,10 @@ async def MAX7219_inveert_to_code(config, action_id, template_arg, args):
|
|||
|
||||
|
||||
@automation.register_action(
|
||||
"MAX7219.turn_off", DisplayVisiblityAction, MAX7219_OFF_ACTION_SCHEMA
|
||||
"MAX7219.turn_off", DisplayVisibilityAction, MAX7219_OFF_ACTION_SCHEMA
|
||||
)
|
||||
@automation.register_action(
|
||||
"MAX7219.turn_on", DisplayVisiblityAction, MAX7219_ON_ACTION_SCHEMA
|
||||
"MAX7219.turn_on", DisplayVisibilityAction, MAX7219_ON_ACTION_SCHEMA
|
||||
)
|
||||
async def MAX7219_visible_to_code(config, action_id, template_arg, args):
|
||||
paren = await cg.get_variable(config[CONF_ID])
|
||||
|
|
|
@ -120,7 +120,6 @@ class MAX7219Component : public display::DisplayBuffer,
|
|||
optional<max7219_writer_t> writer_local_{};
|
||||
};
|
||||
|
||||
|
||||
template<typename... Ts> class DisplayInvertAction : public Action<Ts...> {
|
||||
public:
|
||||
DisplayInvertAction(MAX7219Component *buffer) : buffer_(buffer) {}
|
||||
|
|
Loading…
Reference in a new issue