mirror of
https://gitee.com/qpy-solutions/tracker-v2.git
synced 2025-05-19 11:08:26 +08:00
100 lines
2.8 KiB
Python
100 lines
2.8 KiB
Python
# Copyright (c) Quectel Wireless Solution, Co., Ltd.All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import utime
|
|
import checkNet
|
|
|
|
from usr.modules.sensor import Sensor
|
|
from usr.modules.logging import getLogger
|
|
from usr.modules.location import Location
|
|
from usr.settings import PROJECT_NAME, PROJECT_VERSION, settings
|
|
|
|
log = getLogger(__name__)
|
|
|
|
|
|
class DeviceCheck(object):
|
|
|
|
def __init__(self):
|
|
self.__locator = None
|
|
self.__sensor = None
|
|
|
|
def add_module(self, module):
|
|
if isinstance(module, Location):
|
|
self.__locator = module
|
|
return True
|
|
elif isinstance(module, Sensor):
|
|
self.__sensor = module
|
|
return True
|
|
return False
|
|
|
|
def net(self):
|
|
current_settings = settings.get()
|
|
checknet = checkNet.CheckNetwork(PROJECT_NAME, PROJECT_VERSION)
|
|
timeout = current_settings.get("sys", {}).get("checknet_timeout", 60)
|
|
check_res = checknet.wait_network_connected(timeout)
|
|
log.debug("DeviceCheck.net res: %s" % str(check_res))
|
|
return check_res
|
|
|
|
def location(self):
|
|
# return True if OK
|
|
if not self.__locator:
|
|
raise TypeError("self.__locator is not registered")
|
|
|
|
current_settings = settings.get()
|
|
retry = 0
|
|
gps_data = None
|
|
sleep_time = 1
|
|
|
|
while retry < 5:
|
|
if retry > 0:
|
|
retry += 1
|
|
utime.sleep(sleep_time)
|
|
sleep_time *= 2
|
|
|
|
if current_settings["user_cfg"].get("loc_method"):
|
|
loc_method = current_settings["user_cfg"].get("loc_method")
|
|
elif current_settings["sys"]["base_cfg"]["LocConfig"]:
|
|
loc_method = current_settings["LocConfig"].get("loc_method")
|
|
else:
|
|
loc_method = 7
|
|
|
|
loc_info = self.__locator.read(loc_method)
|
|
for k, v in loc_info.items():
|
|
gps_data = v
|
|
if gps_data:
|
|
break
|
|
if gps_data:
|
|
break
|
|
|
|
if gps_data:
|
|
return True
|
|
|
|
return False
|
|
|
|
def temp(self):
|
|
# return True if OK
|
|
return None
|
|
|
|
def light(self):
|
|
# return True if OK
|
|
return None
|
|
|
|
def triaxial(self):
|
|
# return True if OK
|
|
return None
|
|
|
|
def mike(self):
|
|
# return True if OK
|
|
return None
|