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