介绍

用于从 Analog Devices ADT7410 精密温度传感器读取温度的 CircuitPython 驱动程序

依赖关系

该驱动程序取决于:

请确保所有依赖项在 CircuitPython 文件系统上可用。这可以通过下载 Adafruit 库和驱动程序包轻松实现 。

从 PyPI 安装

在受支持的 GNU/Linux 系统(如 Raspberry Pi)上,您可以 从 PyPI本地安装驱动程序。为当前用户安装:

pip3 install adafruit-circuitpython-adt7410

要在系统范围内安装(在某些情况下可能需要这样做):

sudo pip3 install adafruit-circuitpython-adt7410

要在当前项目的虚拟环境中安装:

mkdir project-name && cd project-name
python3 -m venv .env
source .env/bin/activate
pip3 install adafruit-circuitpython-adt7410

使用示例

import time
import board
import adafruit_adt7410

i2c_bus = board.I2C()
adt = adafruit_adt7410.ADT7410(i2c_bus, address=0x48)
adt.high_resolution = True

while True:
        print(adt.temperature)
        time.sleep(0.5)

贡献

欢迎投稿! 在做出贡献以帮助该项目保持受欢迎之前,请阅读我们的行为准则。

文档

有关构建库文档的信息,请查看 本指南