mirror of
https://github.com/esphome/esphome.git
synced 2026-02-06 05:39:40 -07:00
80 lines
1.7 KiB
YAML
80 lines
1.7 KiB
YAML
text_sensor:
|
|
- platform: template
|
|
name: "Test Substitute Single"
|
|
id: test_substitute_single
|
|
filters:
|
|
- substitute:
|
|
- ERROR -> Error
|
|
|
|
- platform: template
|
|
name: "Test Substitute Multiple"
|
|
id: test_substitute_multiple
|
|
filters:
|
|
- substitute:
|
|
- ERROR -> Error
|
|
- WARN -> Warning
|
|
- INFO -> Information
|
|
- DEBUG -> Debug
|
|
|
|
- platform: template
|
|
name: "Test Substitute Chained"
|
|
id: test_substitute_chained
|
|
filters:
|
|
- substitute:
|
|
- foo -> bar
|
|
- to_upper
|
|
- substitute:
|
|
- BAR -> baz
|
|
|
|
- platform: template
|
|
name: "Test Map Single"
|
|
id: test_map_single
|
|
filters:
|
|
- map:
|
|
- ON -> Active
|
|
|
|
- platform: template
|
|
name: "Test Map Multiple"
|
|
id: test_map_multiple
|
|
filters:
|
|
- map:
|
|
- ON -> Active
|
|
- OFF -> Inactive
|
|
- UNKNOWN -> Error
|
|
- IDLE -> Standby
|
|
|
|
- platform: template
|
|
name: "Test Map Passthrough"
|
|
id: test_map_passthrough
|
|
filters:
|
|
- map:
|
|
- Good -> Excellent
|
|
- Bad -> Poor
|
|
|
|
- platform: template
|
|
name: "Test All Filters"
|
|
id: test_all_filters
|
|
filters:
|
|
- to_upper
|
|
- to_lower
|
|
- append: " suffix"
|
|
- prepend: "prefix "
|
|
- substitute:
|
|
- prefix -> PREFIX
|
|
- suffix -> SUFFIX
|
|
- map:
|
|
- PREFIX text SUFFIX -> mapped
|
|
|
|
- platform: template
|
|
name: "Test Lambda Filter"
|
|
id: test_lambda_filter
|
|
filters:
|
|
- lambda: |-
|
|
return {"[" + x + "]"};
|
|
- to_upper
|
|
- lambda: |-
|
|
if (x.length() > 10) {
|
|
return {x.substr(0, 10) + "..."};
|
|
}
|
|
return {x};
|