mirror of
https://github.com/esphome/esphome.git
synced 2024-11-02 08:40:55 +01:00
15 lines
225 B
Python
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'
|