1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-07 03:11:00 +01:00
esphome/esphomeyaml/components/debug.py
2019-01-06 19:38:23 +01:00

16 lines
264 B
Python

import voluptuous as vol
from esphomeyaml.cpp_generator import add
from esphomeyaml.cpp_types import App
DEPENDENCIES = ['logger']
CONFIG_SCHEMA = vol.Schema({})
def to_code(config):
add(App.make_debug_component())
BUILD_FLAGS = '-DUSE_DEBUG_COMPONENT'