mirror of
https://github.com/esphome/esphome.git
synced 2025-02-15 09:28:16 +00:00
* Recommend similar keys for spelling errors Fixes https://github.com/esphome/feature-requests/issues/68 * Fixes * Fix
15 lines
268 B
Python
15 lines
268 B
Python
import esphome.config_validation as cv
|
|
from esphome.cpp_generator import add
|
|
from esphome.cpp_types import App
|
|
|
|
DEPENDENCIES = ['logger']
|
|
|
|
CONFIG_SCHEMA = cv.Schema({})
|
|
|
|
|
|
def to_code(config):
|
|
add(App.make_debug_component())
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_DEBUG_COMPONENT'
|