1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 02:40:56 +01:00
esphome/esphomeyaml/components/debug.py
Otto Winter 3540b3fbb0
Web server (#7)
* Web Server

* Preparations for 1.3

* Fixes

* Fix Lint
2018-04-18 18:43:13 +02:00

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'