mirror of
https://gitee.com/qpy-solutions/tracker-v2.git
synced 2025-05-19 02:58:25 +08:00
20 lines
243 B
Python
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
|