1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 19:00:59 +01:00
esphome/esphomeyaml/components/debug.py
2018-05-06 15:56:12 +02:00

15 lines
225 B
Python

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())
BUILD_FLAGS = '-DUSE_DEBUG_COMPONENT'