immersive-home/content/entities/sensor/sensor.gd
2023-11-14 00:51:48 +01:00

25 lines
742 B
GDScript

extends StaticBody3D
@export var entity_id = "sensor.sun_next_dawn"
@onready var label: Label3D = $Label
# Called when the node enters the scene tree for the first time.
func _ready():
var stateInfo = await HomeAdapters.adapter.get_state(entity_id)
set_text(stateInfo)
await HomeAdapters.adapter.watch_state(entity_id, func(new_state):
set_text(new_state)
)
func set_text(stateInfo):
var text = stateInfo["state"]
if stateInfo["attributes"]["friendly_name"] != null:
text = stateInfo["attributes"]["friendly_name"] + "\n" + text
if stateInfo["attributes"].has("unit_of_measurement") && stateInfo["attributes"]["unit_of_measurement"] != null:
text += " " + stateInfo["attributes"]["unit_of_measurement"]
label.text = text