25 lines
569 B
YAML
25 lines
569 B
YAML
text_sensor:
|
|
- platform: wifi_info
|
|
ip_address:
|
|
name: "IP Address"
|
|
id: wifi_ip_text
|
|
on_value:
|
|
then:
|
|
- lvgl.label.update:
|
|
id: settings_ip_label
|
|
text:
|
|
format: "IP: %s"
|
|
args: ["x.c_str()"]
|
|
|
|
sensor:
|
|
- platform: uptime
|
|
name: "Uptime"
|
|
id: uptime_sensor
|
|
update_interval: 60s
|
|
on_value:
|
|
then:
|
|
- lvgl.label.update:
|
|
id: settings_uptime_label
|
|
text:
|
|
format: "Uptime: %.0f min"
|
|
args: ["x / 60.0f"]
|