mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 11:22:24 +01:00
11 lines
293 B
Python
11 lines
293 B
Python
import esphome.codegen as cg
|
|
from esphome.components import mcp23xxx_base
|
|
|
|
AUTO_LOAD = ["mcp23xxx_base"]
|
|
CODEOWNERS = ["@jesserockz"]
|
|
|
|
NUM_PINS = 16
|
|
|
|
mcp23x17_base_ns = cg.esphome_ns.namespace("mcp23x17_base")
|
|
MCP23X17Base = mcp23x17_base_ns.class_("MCP23X17Base", mcp23xxx_base.MCP23XXXBase)
|