mirror of
https://github.com/esphome/esphome.git
synced 2025-11-16 14:55:50 +00:00
[core] Add helper functions for clamp_at_... (#10387)
This commit is contained in:
13
tests/components/esp8266/test.esp8266-ard.yaml
Normal file
13
tests/components/esp8266/test.esp8266-ard.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user