mirror of
https://github.com/esphome/esphome.git
synced 2024-11-08 09:40:53 +01:00
3540b3fbb0
* Web Server * Preparations for 1.3 * Fixes * Fix Lint
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
import voluptuous as vol
|
|
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.components import output
|
|
from esphomeyaml.components.pca9685 import PCA9685_COMPONENT_TYPE
|
|
from esphomeyaml.const import CONF_CHANNEL, CONF_ID, CONF_PCA9685_ID, CONF_POWER_SUPPLY
|
|
from esphomeyaml.helpers import Pvariable, get_variable
|
|
|
|
DEPENDENCIES = ['pca9685']
|
|
|
|
PLATFORM_SCHEMA = output.FLOAT_PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_CHANNEL): vol.All(vol.Coerce(int),
|
|
vol.Range(min=0, max=15)),
|
|
vol.Optional(CONF_PCA9685_ID): cv.variable_id,
|
|
})
|
|
|
|
|
|
def to_code(config):
|
|
power_supply = None
|
|
if CONF_POWER_SUPPLY in config:
|
|
power_supply = get_variable(config[CONF_POWER_SUPPLY])
|
|
pca9685 = get_variable(config.get(CONF_PCA9685_ID), PCA9685_COMPONENT_TYPE)
|
|
rhs = pca9685.create_channel(config[CONF_CHANNEL], power_supply)
|
|
out = Pvariable('output::PCA9685OutputComponent::Channel', config[CONF_ID], rhs)
|
|
output.setup_output_platform(out, config, skip_power_supply=True)
|
|
|
|
|
|
def build_flags(config):
|
|
return '-DUSE_PCA9685_OUTPUT'
|