mirror of
https://github.com/esphome/esphome.git
synced 2025-11-16 06:45:48 +00:00
14 lines
258 B
YAML
14 lines
258 B
YAML
logger:
|
|
level: VERBOSE
|
|
|
|
esphome:
|
|
on_boot:
|
|
- lambda: |-
|
|
int x = 100;
|
|
x = clamp(x, 50, 90);
|
|
assert(x == 90);
|
|
x = clamp_at_least(x, 95);
|
|
assert(x == 95);
|
|
x = clamp_at_most(x, 40);
|
|
assert(x == 40);
|