mirror of
https://github.com/esphome/esphome.git
synced 2026-09-22 04:28:43 +00:00
14 lines
366 B
C++
14 lines
366 B
C++
#include "automation.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome::light {
|
|
|
|
static const char *const TAG = "light.automation";
|
|
|
|
void addressableset_warn_about_scale(const char *field) {
|
|
ESP_LOGW(TAG, "Lambda for parameter %s of light.addressable_set should return values in range 0-1 instead of 0-255.",
|
|
field);
|
|
}
|
|
|
|
} // namespace esphome::light
|