mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 04:33:27 +02:00
3d9301a0f7
* Rename * Update * Add migration * Fix * Fix dashboard * Change test * Fixes * Code cleanup * Fix import order * Update * Automate docker builds * Shellcheck
16 lines
256 B
Python
16 lines
256 B
Python
import voluptuous as vol
|
|
|
|
from esphome.cpp_generator import add
|
|
from esphome.cpp_types import App
|
|
|
|
DEPENDENCIES = ['logger']
|
|
|
|
CONFIG_SCHEMA = vol.Schema({})
|
|
|
|
|
|
def to_code(config):
|
|
add(App.make_debug_component())
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_DEBUG_COMPONENT'
|