ESPHome 2026.1.0-dev
Loading...
Searching...
No Matches
automation.cpp
Go to the documentation of this file.
1#include "automation.h"
2#include "esphome/core/log.h"
3
4namespace esphome::light {
5
6static const char *const TAG = "light.automation";
7
8void addressableset_warn_about_scale(const char *field) {
9 ESP_LOGW(TAG, "Lambda for parameter %s of light.addressable_set should return values in range 0-1 instead of 0-255.",
10 field);
11}
12
13} // namespace esphome::light
void addressableset_warn_about_scale(const char *field)
Definition automation.cpp:8