mirror of
https://gitee.com/qpy-solutions/tracker-v2.git
synced 2025-05-18 18:48:25 +08:00
12 lines
276 B
Python
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 |