demo.tracker-v2/code/selfcheck.py
2022-03-04 13:25:18 +08:00

20 lines
243 B
Python

'''
check if network, gps, and all the sensors work normally
'''
def netcheck():
# return True if OK
pass
def gps_check():
# return True if OK
pass
def sensor_check():
# return True if OK
pass