1 Star 0 Fork 6

anda/modules

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
temp_humidity_sensor.py 4.53 KB
一键复制 编辑 原始数据 按行查看 历史
JackSun 提交于 2022-12-21 15:26 . update: new tracker modules
# 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.from machine import I2C
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@file :temp_humidity_sensor.py
@author :elian.wang@quectel.com
@brief :Show tempurature and humidity sensor TH20 usage
@version :0.1
@date :2022-05-20 11:14:24
@copyright :Copyright (c) 2022
"""
import utime
from machine import I2C
class TempHumiditySensor:
"""Read tempurature and humidity sensor value, reset sensor"""
def __init__(self, i2cn, mode, calibration=0xE1, start_measurment=0xAC, reset=0xBA, i2c_addr=0x38):
self.__i2c = I2C(i2cn, mode)
# Initialization command
self.__CALIBRATION_CMD = calibration
# Trigger measurement
self.__START_MEASURMENT_CMD = start_measurment
# reset
self.__RESET_CMD = reset
# slave address
self.__i2c_addr = i2c_addr
def __write_data(self, data):
"""Write data to I2C
Args:
data(list): command
Returns:
int: 0 - success, -1 - falied
"""
return self.__i2c.write(self.__i2c_addr, bytearray(0x00), 0, bytearray(data), len(data))
def __read_data(self):
"""Read data from I2C
Returns:
list: revice data
"""
r_data = bytearray([0x00] * 6)
self.__i2c.read(self.__i2c_addr, bytearray(0x00), 0, r_data, 6, 0)
return self.__check_data(list(r_data))
def __check_data(self, data):
"""Check recive data
Args:
data(list): data from read data
Returns:
list: valid data, return empty list if no valid data
"""
return [] if (data[0] >> 7) != 0x0 else data[1:6]
def __calibrate(self):
"""Calibrate i2c to read data.
Abstracted into sensor open.
Returns:
bool: True - success, False - falied.
"""
write_res = self.__write_data([self.__CALIBRATION_CMD, 0x08, 0x00])
if write_res == 0:
utime.sleep_ms(300) # at last 300ms
return True
return False
def __start_measurment(self):
"""Trigger data conversion,send 0xAC, 0x33, 0x00
Returns:
bool: True - success, False - Falied
"""
write_res = self.__write_data([self.__START_MEASURMENT_CMD, 0x33, 0x00])
if write_res == 0:
utime.sleep_ms(80) # at last delay 75ms
return True
return False
def __reset(self):
"""Reset i2c to read data.
Abstracted into sensor close.
Returns:
bool: True - success, False - falied.
"""
write_res = self.__write_data([self.__RESET_CMD])
if write_res == 0:
utime.sleep_ms(30) # at last 20ms
return True
return False
def __get_humidity(self, data):
"""Read humidity from i2c data
Args:
data(list): i2c data
Returns:
float: humidity
"""
humidity = (data[0] << 12) | (data[1] << 4) | ((data[2] & 0xF0) >> 4)
return float("%.2f" % ((humidity / (1 << 20)) * 100.0))
def __get_temperature(self, data):
"""Read temperature from i2c data
Args:
data(list): i2c data
Returns:
float: temperature
"""
temperature = ((data[2] & 0xf) << 16) | (data[3] << 8) | data[4]
return float("%.2f" % ((temperature * 200.0 / (1 << 20)) - 50))
def read(self):
"""Read temperature and humidity from i2c
Returns:
tuple: (temperature, humidity)
temperature(float): None if get failed else float data
humidity(float): None if get failed else float data
"""
res = (None, None)
if self.__calibrate():
if self.__start_measurment():
data = self.__read_data()
if data:
res = self.__get_temperature(data), self.__get_humidity(data)
self.__reset()
return res
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/andaai/modules.git
git@gitee.com:andaai/modules.git
andaai
modules
modules
master

搜索帮助