Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini
1.3.4
See the version list below for details.
dotnet add package Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini --version 1.3.4
NuGet\Install-Package Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini -Version 1.3.4
<PackageReference Include="Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini" Version="1.3.4" />
paket add Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini --version 1.3.4
#r "nuget: Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini, 1.3.4"
// Install Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini as a Cake Addin
#addin nuget:?package=Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini&version=1.3.4
// Install Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini as a Cake Tool
#tool nuget:?package=Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini&version=1.3.4
Meadow.Foundation.Grove.Sensors.Atmospheric.TemperatureHumiditySensor_HighAccuracyMini
Grove I2C Temperature and Humidity sensor - High Accuracy and Mini (TH02)
The TemperatureHumiditySensor_HighAccuracyMini library is designed for the Wilderness Labs Meadow .NET IoT platform and is part of Meadow.Foundation.
The Meadow.Foundation peripherals library is an open-source repository of drivers and libraries that streamline and simplify adding hardware to your C# .NET Meadow IoT application.
For more information on developing for Meadow, visit developer.wildernesslabs.co.
To view all Wilderness Labs open-source projects, including samples, visit github.com/wildernesslabs.
Usage
TemperatureHumiditySensor_HighAccuracyMini sensor;
public override Task Initialize()
{
Console.WriteLine("Initialize...");
sensor = new TemperatureHumiditySensor_HighAccuracyMini(Device.CreateI2cBus());
var consumer = TemperatureHumiditySensor_HighAccuracyMini.CreateObserver(
handler: result =>
{
Console.WriteLine($"Observer: Temp changed by threshold; new temp: {result.New.Temperature?.Celsius:N2}C, old: {result.Old?.Temperature?.Celsius:N2}C");
},
filter: result =>
{
//c# 8 pattern match syntax. checks for !null and assigns var.
if (result.Old is { } old)
{
return (
(result.New.Temperature.Value - old.Temperature.Value).Abs().Celsius > 0.5);
}
return false;
}
);
sensor.Subscribe(consumer);
sensor.Updated += (sender, result) =>
{
Console.WriteLine($" Temperature: {result.New.Temperature?.Celsius:N2}C");
Console.WriteLine($" Relative Humidity: {result.New.Humidity?.Percent:N2}%");
};
return Task.CompletedTask;
}
public override Task Run()
{
sensor.StartUpdating(TimeSpan.FromSeconds(1));
return Task.CompletedTask;
}
How to Contribute
- Found a bug? Report an issue
- Have a feature idea or driver request? Open a new feature request
- Want to contribute code? Fork the Meadow.Foundation.Grove repository and submit a pull request against the
develop
branch
Need Help?
If you have questions or need assistance, please join the Wilderness Labs community on Slack.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Meadow.Foundation.Sensors.Atmospheric.Th02 (>= 1.3.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.3.4.5-beta | 24 | 10/4/2023 |
1.3.4.4-beta | 34 | 10/3/2023 |
1.3.4.3-beta | 37 | 10/3/2023 |
1.3.4.2-beta | 56 | 9/30/2023 |
1.3.4.1-beta | 70 | 9/30/2023 |
1.3.4 | 56 | 9/26/2023 |
1.3.2.5-beta | 87 | 9/21/2023 |
1.3.2.4-beta | 82 | 9/20/2023 |
1.3.2.3-beta | 65 | 9/19/2023 |
1.3.2.2-beta | 84 | 9/15/2023 |
1.3.2.1-beta | 109 | 9/14/2023 |
1.3.2-beta | 95 | 9/13/2023 |
1.3.1.1-beta | 117 | 9/5/2023 |
1.3.0 | 155 | 8/29/2023 |
1.2.1.11-beta | 155 | 8/24/2023 |
1.2.1.9-beta | 186 | 8/17/2023 |
1.2.1.8-beta | 226 | 8/8/2023 |
1.2.1.6-beta | 261 | 8/4/2023 |
1.2.0 | 255 | 8/1/2023 |
1.1.1.11-beta | 245 | 7/24/2023 |
1.1.1.10-beta | 247 | 7/22/2023 |
1.1.1.9-beta | 244 | 7/22/2023 |
1.1.1.8-beta | 259 | 7/21/2023 |
1.1.0 | 262 | 7/11/2023 |
1.0.2.1 | 268 | 6/3/2023 |
1.0.2 | 267 | 6/3/2023 |
1.0.0.1 | 289 | 5/30/2023 |
1.0.0 | 299 | 5/28/2023 |
0.99.0 | 286 | 5/28/2023 |
0.98.2-alpha | 257 | 5/27/2023 |
0.98.0 | 268 | 5/6/2023 |
0.96.0 | 334 | 4/2/2023 |
0.95.0 | 372 | 3/5/2023 |
0.94.2 | 361 | 2/7/2023 |
0.94.0 | 404 | 2/2/2023 |
0.92.5 | 409 | 12/31/2022 |
0.90.0 | 443 | 11/23/2022 |
0.89.1 | 443 | 11/23/2022 |
0.1.0 | 499 | 5/30/2022 |