diff --git a/src/consolecounter.py b/src/consolecounter.py new file mode 100644 index 0000000..cbeabc8 --- /dev/null +++ b/src/consolecounter.py @@ -0,0 +1,18 @@ +from peoplecounter import PeopleCounter +from sensor.vl53l1xsensor import VL53L1XSensor +import logging + +counter = PeopleCounter(VL53L1XSensor()) +peopleCount = 0 + +logging.getLogger().setLevel(logging.INFO) + + +def countChange(change: int) -> None: + global peopleCount + peopleCount += change + logging.info(f'People count change to: {peopleCount}') + + +counter.hookCounting(countChange) +counter.run()