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

17 lines
237 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