mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 18:40:14 -04:00
initial push
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# Text sensors with general information.
|
||||
platform: template
|
||||
#ip_address:
|
||||
name: ${friendly_name} IP
|
||||
id: ${entity_name}_ip
|
||||
icon: mdi:ip-network
|
||||
entity_category: diagnostic
|
||||
disabled_by_default: true
|
||||
lambda: return {id(eth).get_ip_address().str() };
|
||||
update_interval: 60s
|
||||
@@ -0,0 +1,10 @@
|
||||
# Text sensors with general information.
|
||||
platform: template
|
||||
#mac_address:
|
||||
name: ${friendly_name} Ethernet MAC Address
|
||||
id: ${entity_name}_ethernet_mac_address
|
||||
disabled_by_default: true
|
||||
icon: mdi:network
|
||||
entity_category: diagnostic
|
||||
lambda: return {esp_eth_get_mac.str() };
|
||||
update_interval: 60s
|
||||
@@ -0,0 +1,5 @@
|
||||
# platform: version
|
||||
# name: ${friendly_name} ESPHome Version
|
||||
# id: ${entity_name}_version
|
||||
# hide_timestamp: true
|
||||
# disabled_by_default: true
|
||||
@@ -0,0 +1,22 @@
|
||||
# Text sensors with general information.
|
||||
platform: wifi_info
|
||||
ip_address:
|
||||
name: ${friendly_name} IP
|
||||
id: ${entity_name}_ip
|
||||
icon: mdi:ip
|
||||
disabled_by_default: true
|
||||
ssid:
|
||||
name: ${friendly_name} SSID
|
||||
id: ${entity_name}_ssid
|
||||
icon: mdi:lan
|
||||
disabled_by_default: true
|
||||
bssid:
|
||||
name: ${friendly_name} BSSID
|
||||
id: ${entity_name}_bssid
|
||||
disabled_by_default: true
|
||||
icon: mdi:router-network
|
||||
mac_address:
|
||||
name: ${friendly_name} Wifi MAC Address
|
||||
id: ${entity_name}_wifi_mac_address
|
||||
disabled_by_default: true
|
||||
icon: mdi:wifi-cog
|
||||
Reference in New Issue
Block a user