mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
16 lines
247 B
Python
16 lines
247 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())
|
||
|
|
||
|
|
||
|
def build_flags(config):
|
||
|
return '-DUSE_DEBUG_COMPONENT'
|