2023-06-05 17:27:06 +00:00
|
|
|
import esphome.codegen as cg
|
|
|
|
import esphome.config_validation as cv
|
|
|
|
from esphome.const import CONF_ID
|
2023-06-05 19:39:46 +00:00
|
|
|
from esphome import pins, automation
|
2023-06-05 17:27:06 +00:00
|
|
|
|
|
|
|
DEPENDENCIES = ["preferences"]
|
|
|
|
|
|
|
|
|
|
|
|
ratgdo_ns = cg.esphome_ns.namespace("ratgdo")
|
2023-06-05 21:39:58 +00:00
|
|
|
RATGDO = ratgdo_ns.class_("RATGDOComponent", cg.Component)
|
2023-06-05 17:27:06 +00:00
|
|
|
|
|
|
|
CONF_ROLLING_CODES = "rolling_codes"
|
|
|
|
|
2023-06-05 19:39:46 +00:00
|
|
|
|
|
|
|
CONF_OUTPUT_GDO = "output_gdo_pin"
|
|
|
|
DEFAULT_OUTPUT_GDO = 2 # D4 ed control terminal / GarageDoorOpener (UART1 TX) pin is D4 on D1 Mini
|
|
|
|
CONF_TRIGGER_OPEN = "trigger_open_pin"
|
|
|
|
DEFAULT_TRIGGER_OPEN = 14 # D5 dry contact for opening door
|
|
|
|
CONF_TRIGGER_CLOSE = "trigger_close_pin"
|
|
|
|
DEFAULT_TRIGGER_CLOSE = 12 # D6 dry contact for closing door
|
|
|
|
CONF_TRIGGER_LIGHT = "trigger_light_pin"
|
|
|
|
DEFAULT_TRIGGER_LIGHT = 0 # D3 dry contact for triggering light (no discrete light commands, so toggle only)
|
|
|
|
CONF_STATUS_DOOR = "status_door_pin"
|
|
|
|
DEFAULT_STATUS_DOOR = 16 # D0 output door status, HIGH for open, LOW for closed
|
|
|
|
CONF_STATUS_OBST = "status_obst_pin"
|
|
|
|
DEFAULT_STATUS_OBST = 15 # D8 output for obstruction status, HIGH for obstructed, LOW for clear
|
|
|
|
CONF_INPUT_RPM1 = "input_rpm1_pin"
|
|
|
|
DEFAULT_INPUT_RPM1 = 5 # D1 RPM1 rotary encoder input OR reed switch if not soldering to the door opener logic board
|
|
|
|
CONF_INPUT_RPM2 = "input_rpm2_pin"
|
|
|
|
DEFAULT_INPUT_RPM2 = 4 # D2 RPM2 rotary encoder input OR not used if using reed switch
|
|
|
|
CONF_INPUT_OBST = "input_obst_pin"
|
|
|
|
DEFAULT_INPUT_OBST = 13 # D7 black obstruction sensor terminal
|
|
|
|
|
|
|
|
|
2023-06-05 17:27:06 +00:00
|
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
|
|
{
|
|
|
|
cv.GenerateID(): cv.declare_id(RATGDO),
|
2023-06-05 17:27:27 +00:00
|
|
|
cv.Optional(CONF_ROLLING_CODES, default=True): cv.boolean,
|
2023-06-05 19:40:11 +00:00
|
|
|
cv.Optional(CONF_OUTPUT_GDO, default=DEFAULT_OUTPUT_GDO): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_TRIGGER_OPEN, default=DEFAULT_TRIGGER_OPEN): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_TRIGGER_CLOSE, default=DEFAULT_TRIGGER_CLOSE): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_TRIGGER_LIGHT, default=DEFAULT_TRIGGER_LIGHT): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_STATUS_DOOR, default=DEFAULT_STATUS_DOOR): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_STATUS_OBST, default=DEFAULT_STATUS_OBST): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_INPUT_RPM1, default=DEFAULT_INPUT_RPM1): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_INPUT_RPM2, default=DEFAULT_INPUT_RPM2): pins.internal_gpio_input_pin_schema,
|
|
|
|
cv.Optional(CONF_INPUT_OBST, default=DEFAULT_INPUT_OBST): pins.internal_gpio_input_pin_schema,
|
2023-06-05 17:27:06 +00:00
|
|
|
}
|
|
|
|
).extend(cv.COMPONENT_SCHEMA)
|
|
|
|
|
|
|
|
|
|
|
|
async def to_code(config):
|
|
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
|
|
await cg.register_component(var, config)
|
2023-06-05 18:27:40 +00:00
|
|
|
cg.add(var.set_rolling_codes(config[CONF_ROLLING_CODES]))
|
2023-06-05 19:39:46 +00:00
|
|
|
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_OUTPUT_GDO])
|
|
|
|
cg.add(var.set_output_gdo_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_TRIGGER_OPEN])
|
|
|
|
cg.add(var.set_trigger_open_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_TRIGGER_CLOSE])
|
|
|
|
cg.add(var.set_trigger_close_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_TRIGGER_LIGHT])
|
|
|
|
cg.add(var.set_trigger_light_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_STATUS_DOOR])
|
|
|
|
cg.add(var.set_status_door_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_STATUS_OBST])
|
|
|
|
cg.add(var.set_status_obst_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_INPUT_RPM1])
|
|
|
|
cg.add(var.set_input_rpm1_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_INPUT_RPM2])
|
|
|
|
cg.add(var.set_input_rpm2_pin(pin))
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_INPUT_OBST])
|
2023-06-05 21:40:17 +00:00
|
|
|
cg.add(var.set_input_obst_pin(pin))
|
2023-06-05 19:39:46 +00:00
|
|
|
|
2023-06-05 17:50:25 +00:00
|
|
|
cg.add_library(
|
|
|
|
name="secplus",
|
|
|
|
repository="https://github.com/bdraco/secplus",
|
|
|
|
version="f98c3220356c27717a25102c0b35815ebbd26ccc",
|
2023-06-05 17:52:42 +00:00
|
|
|
)
|
|
|
|
cg.add_library(
|
|
|
|
name="espsoftwareserial",
|
|
|
|
repository="https://github.com/bdraco/espsoftwareserial",
|
|
|
|
version="2f408224633316b997f82339e5b2731b1e561060",
|
2023-06-05 17:50:25 +00:00
|
|
|
)
|