nanoFramework.Iot.Device.Am2320 1.2.613

前缀已保留
dotnet add package nanoFramework.Iot.Device.Am2320 --version 1.2.613                
NuGet\Install-Package nanoFramework.Iot.Device.Am2320 -Version 1.2.613                
该命令旨在在 Visual Studio 的包管理器控制台中使用,因为它使用 NuGet 模块的 Install-Package 版本。
<PackageReference Include="nanoFramework.Iot.Device.Am2320" Version="1.2.613" />                
对于支持 包引用 的项目,请将此 XML 节点复制到项目文件中以便引用包。
paket add nanoFramework.Iot.Device.Am2320 --version 1.2.613                
#r "nuget: nanoFramework.Iot.Device.Am2320, 1.2.613"                
#r 指令可用于 F# Interactive 和多语言笔记本。请将其复制到交互式工具或脚本的源代码中以便引用包。
// Install nanoFramework.Iot.Device.Am2320 as a Cake Addin
#addin nuget:?package=nanoFramework.Iot.Device.Am2320&version=1.2.613

// Install nanoFramework.Iot.Device.Am2320 as a Cake Tool
#tool nuget:?package=nanoFramework.Iot.Device.Am2320&version=1.2.613                

AM2320 - 温度和湿度传感器

AM2320 是一个温度和湿度传感器,对 0.1 度和 0.1 相对湿度的变化敏感。

文档

使用方法

重要:在创建 I2cDevice 之前,确保正确设置了 I2C 引脚,特别是针对 ESP32 的引脚,并确保安装了 nanoFramework.Hardware.ESP32 nuget

//////////////////////////////////////////////////////////////////////
// when connecting to an ESP32 device, need to configure the I2C GPIOs
// used for the bus
Configuration.SetPinFunction(21, DeviceFunction.I2C1_DATA);
Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);

对于其他设备,如 STM32,请确保您正在使用您想要使用的 SPI 总线的预置引脚。芯片选择也可以预先设置。

以下是使用 AM2320 的示例

using Iot.Device.Am2320;
using nanoFramework.Hardware.Esp32;
using System.Device.I2c;
using System.Diagnostics;
using System.Threading;

Debug.WriteLine("Hello from AM2320!");

//////////////////////////////////////////////////////////////////////
// when connecting to an ESP32 device, need to configure the I2C GPIOs
// used for the bus
Configuration.SetPinFunction(21, DeviceFunction.I2C1_DATA);
Configuration.SetPinFunction(22, DeviceFunction.I2C1_CLOCK);

using Am2320 am2330 = new(new I2cDevice(new I2cConnectionSettings(1, Am2320.DefaultI2cAddress, I2cBusSpeed.StandardMode)));

while(true)
{
    var temp = am2330.Temperature;
    var hum = am2330.Humidity;
    if(am2330.IsLastReadSuccessful)
    {
        Debug.WriteLine($"Temp = {temp.DegreesCelsius} C, Hum = {hum.Percent} %");
    }
    else
    {
        Debug.WriteLine("Not sucessfull read");
    }

    Thread.Sleep(Am2320.MinimumReadPeriod);
}

设备信息

您可以读取设备信息。

注意:在部分设备上,设备信息只返回 0。

// On some copies, the device information contains only 0
var deviceInfo = am2330.DeviceInformation;
if (deviceInfo != null)
{
    Debug.WriteLine($"Model: {deviceInfo.Model}");
    Debug.WriteLine($"Version: {deviceInfo.Version}");
    Debug.WriteLine($"Device ID: {deviceInfo.DeviceId}");
}

限制

仅提供了 I2C 实现,未提供 1 个引脚的实现。

用户寄存器和状态寄存器尚未实现。状态寄存器只是一个用户可以存储数据的寄存器。根据文档,目前尚未用于任何用途。

产品 兼容和附加的计算目标框架版本。
.NET 框架 net 兼容。
兼容的目标框架
包含的目标框架(在包中)
了解更多关于 目标框架.NET Standard 的信息。

NuGet 包

此包未被任何 NuGet 包使用。

GitHub 仓库

此包未被任何流行的 GitHub 仓库使用。

版本 下载 最后更新
1.2.613 59 8/9/2024
1.2.601 74 7/26/2024
1.2.590 58 7/17/2024
1.2.573 85 6/19/2024
1.2.570 77 6/14/2024
1.2.536 101 4/15/2024
1.2.514 99 3/22/2024
1.2.494 95 2/28/2024
1.2.474 107 1/24/2024
1.2.462 128 1/5/2024
1.2.458 111 12/20/2023
1.2.436 153 11/10/2023
1.2.416 100 11/8/2023
1.2.403 121 10/6/2023
1.2.396 124 9/27/2023
1.2.384 126 9/6/2023
1.2.378 120 8/16/2023
1.2.369 148 8/2/2023
1.2.363 130 7/28/2023
1.2.357 136 7/19/2023
1.2.354 135 7/14/2023
1.2.345 142 6/21/2023
1.2.341 147 6/14/2023
1.2.337 157 6/7/2023
1.2.335 155 6/2/2023
1.2.329 152 5/26/2023
1.2.313 156 5/12/2023
1.2.302 155 5/10/2023
1.2.297 166 5/3/2023
1.2.273 250 3/17/2023
1.2.267 253 3/10/2023
1.2.263 251 3/8/2023
1.2.259 271 2/27/2023
1.2.256 248 2/24/2023
1.2.253 263 2/22/2023
1.2.222 307 1/9/2023
1.2.217 322 1/6/2023
1.2.212 303 1/5/2023
1.2.208 315 1/3/2023
1.2.203 316 12/28/2022
1.2.159 380 11/14/2022
1.2.153 396 11/5/2022
1.2.141 419 10/25/2022
1.2.87 496 9/15/2022
1.2.63 412 9/3/2022
1.2.47 422 8/15/2022
1.2.40 436 8/6/2022
1.2.38 417 8/5/2022
1.2.28 405 8/1/2022
1.2.13 423 7/24/2022
1.2.10 404 7/23/2022
1.1.145.58726 454 7/7/2022
1.1.133.52556 428 6/30/2022
1.1.121.35854 459 6/26/2022
1.1.116.8772 430 6/24/2022
1.1.113.2032 420 6/23/2022
1.1.102.51394 414 6/15/2022
1.1.99.36719 425 6/14/2022
1.1.97.17326 443 6/13/2022
1.1.92.53000 442 6/8/2022
1.1.72.29765 432 5/31/2022
1.1.64.21380 439 5/26/2022
1.1.54.28879 431 5/23/2022
1.1.40 440 5/5/2022
1.1.3 473 4/15/2022
1.1.1 428 4/14/2022
1.0.300 440 3/31/2022
1.0.288-preview.82 121 3/25/2022
1.0.288-preview.81 110 3/25/2022
1.0.288-preview.72 100 3/22/2022
1.0.288-preview.71 105 3/21/2022
1.0.288-preview.68 111 3/19/2022
1.0.288-preview.67 117 3/18/2022
1.0.288-preview.66 107 3/18/2022
1.0.288-preview.61 108 3/15/2022
1.0.288-preview.54 125 3/8/2022
1.0.288-preview.45 116 2/27/2022
1.0.288-preview.43 106 2/26/2022
1.0.288-preview.33 110 2/18/2022
1.0.288-preview.31 114 2/16/2022
1.0.288-preview.29 122 2/12/2022
1.0.288-preview.26 115 2/10/2022
1.0.288-preview.21 110 2/9/2022
1.0.288-preview.1 129 1/30/2022