demo.tracker-v2/code/selfcheck.py

20 lines
243 B
Python
Raw Normal View History

2022-03-03 09:53:51 +08:00
'''
check if network, gps, and all the sensors work normally
'''
def netcheck():
# return True if OK
pass
2022-03-03 09:53:51 +08:00
def gps_check():
# return True if OK
pass
2022-03-03 09:53:51 +08:00
def sensor_check():
# return True if OK
pass