14 lines
205 B
Python
14 lines
205 B
Python
import hassapi as hass
|
|
|
|
#
|
|
# Hello World App
|
|
#
|
|
# Args:
|
|
#
|
|
|
|
|
|
class HelloWorld(hass.Hass):
|
|
def initialize(self):
|
|
self.log("Hello from AppDaemon")
|
|
self.log("You are now ready to run Apps!")
|