10 lines
221 B
Python
Executable File
10 lines
221 B
Python
Executable File
from appdaemon.plugins.hass import Hass
|
|
|
|
|
|
class HelloWorld(Hass):
|
|
def initialize(self):
|
|
self.log('Hello from AppDaemon')
|
|
self.log('You are now ready to run Apps!')
|
|
|
|
# self.get_history('ball1')
|