| 1234567891011121314151617181920212223242526272829303132 |
- ---
- button:
- - platform: restart
- name: "${friendly_devicename} Restart"
- - platform: safe_mode
- name: "${friendly_devicename} Safe Mode Boot"
- entity_category: diagnostic
- sensor:
- - platform: wifi_signal
- name: "${friendly_devicename} WiFi Signal"
- id: ${low_devicename}_wifi_signal
- update_interval: 60s
- entity_category: diagnostic
- # Reports the WiFi signal strength in %
- - platform: copy
- source_id: "${low_devicename}_wifi_signal"
- name: "${friendly_devicename} WiFi Strength"
- filters:
- - lambda: return min(max(2 * (x + 100.0), 0.0), 100.0);
- unit_of_measurement: "%"
- entity_category: diagnostic
- - platform: uptime
- name: Uptime
- binary_sensor:
- - platform: status
- name: "${friendly_devicename} status"
- text_sensor:
- - platform: version
- name: "${friendly_devicename} Version"
|