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

16 lines
264 B
Python
Raw Normal View History

import voluptuous as vol
2019-01-06 18:38:23 +00:00
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())
2018-05-06 14:56:12 +01:00
BUILD_FLAGS = '-DUSE_DEBUG_COMPONENT'