This commit is contained in:
jaydee
2022-12-14 02:09:37 +01:00
parent 2a4cb0dad3
commit 67c49df791
47 changed files with 20836 additions and 0 deletions

5
hello_world.py Normal file
View File

@@ -0,0 +1,5 @@
name = data.get("name", "world")
logger.info("Hello %s", name)
logger.error("Hello %s", name)
logger.warning("Hello %s", name)
hass.bus.fire(name, {"wow": "from a Python script!"})