rearranged a bit

This commit is contained in:
John Lancaster
2025-01-28 22:39:12 -06:00
parent 161219540c
commit 727bfbac1d
3 changed files with 11 additions and 1 deletions

9
conf/apps/globals/hal.py Normal file
View File

@@ -0,0 +1,9 @@
import logging
logger = logging.getLogger('AppDaemon.Perimeter')
class HAL:
def __init__(self, *args, **kwargs):
self.args = args
self.kwargs = kwargs
logger.info('Logging from HAL')

View File

@@ -0,0 +1,8 @@
CONSTANTS = {
'A': 1,
'B': 2,
'C': 3
}
def utility_function():
return 123, 456