1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 10:50:58 +01:00
esphome/esphomeyaml/components/debug.py

15 lines
225 B
Python
Raw Normal View History

import voluptuous as vol
from esphomeyaml.helpers import App, add
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'