demo.tracker-v2/code/battery.py
2022-03-03 09:53:51 +08:00

12 lines
276 B
Python

class Battery(object):
def __init__(self):
pass
def indicate(self, low_power_threshold, low_power_cb):
self.low_power_threshold = low_power_threshold
self.low_power_cb = low_power_cb
pass
def charge(self):
pass