9 lines
196 B
Python
9 lines
196 B
Python
DOMAIN = "atc_mi_thermometer_gateway"
|
|
|
|
|
|
def setup(hass, config):
|
|
hass.states.set("hello_state.world", "Paulus")
|
|
|
|
# Return boolean to indicate that initialization was successful.
|
|
return True
|