Meadow.Foundation.Sensors.Motion.Mag3110
1.3.2.4-beta
See the version list below for details.
dotnet add package Meadow.Foundation.Sensors.Motion.Mag3110 --version 1.3.2.4-beta
NuGet\Install-Package Meadow.Foundation.Sensors.Motion.Mag3110 -Version 1.3.2.4-beta
<PackageReference Include="Meadow.Foundation.Sensors.Motion.Mag3110" Version="1.3.2.4-beta" />
paket add Meadow.Foundation.Sensors.Motion.Mag3110 --version 1.3.2.4-beta
#r "nuget: Meadow.Foundation.Sensors.Motion.Mag3110, 1.3.2.4-beta"
// Install Meadow.Foundation.Sensors.Motion.Mag3110 as a Cake Addin
#addin nuget:?package=Meadow.Foundation.Sensors.Motion.Mag3110&version=1.3.2.4-beta&prerelease
// Install Meadow.Foundation.Sensors.Motion.Mag3110 as a Cake Tool
#tool nuget:?package=Meadow.Foundation.Sensors.Motion.Mag3110&version=1.3.2.4-beta&prerelease
Meadow.Foundation.Sensors.Motion.Mag3110
Freescale MAG3110 I2C 3 axis magnetometer
The MAG3110 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
Mag3110 sensor;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
sensor = new Mag3110(Device.CreateI2cBus());
// classical .NET events can be used
sensor.Updated += (sender, result) => {
Resolver.Log.Info($"Magnetic Field: [X:{result.New.MagneticField3D?.X.MicroTesla:N2}," +
$"Y:{result.New.MagneticField3D?.Y.MicroTesla:N2}," +
$"Z:{result.New.MagneticField3D?.Z.MicroTesla:N2} (microTeslas)]");
Resolver.Log.Info($"Temp: {result.New.Temperature?.Celsius:N2}C");
};
// Example that uses an IObservable subscription to only be notified when the filter is satisfied
var consumer = Mag3110.CreateObserver(
handler: result => Resolver.Log.Info($"Observer: [x] changed by threshold; new [x]: X:{result.New.MagneticField3D?.X.MicroTesla:N2}, old: X:{result.Old?.MagneticField3D?.X.MicroTesla:N2}"),
// only notify if there's a greater than 1 micro tesla on the Y axis
filter: result => {
if (result.Old is { } old) { //c# 8 pattern match syntax. checks for !null and assigns var.
return ((result.New.MagneticField3D - old.MagneticField3D)?.Y > new MagneticField(1, MU.MicroTesla));
}
return false;
});
sensor.Subscribe(consumer);
return Task.CompletedTask;
}
public async override Task Run()
{
var result = await sensor.Read();
Resolver.Log.Info("Initial Readings:");
Resolver.Log.Info($"Magnetic field: [X:{result.MagneticField3D?.X.MicroTesla:N2}," +
$"Y:{result.MagneticField3D?.Y.MicroTesla:N2}," +
$"Z:{result.MagneticField3D?.Z.MicroTesla:N2} (microTeslas)]");
Resolver.Log.Info($"Temp: {result.Temperature?.Celsius:N2}C");
sensor.StartUpdating(TimeSpan.FromMilliseconds(500));
}
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. net8.0 was computed. net8.0-android was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.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 (>= 1.3.2.4-beta)
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.5.0 | 40 | 11/28/2023 |
1.4.0.9-beta | 39 | 11/28/2023 |
1.4.0.8-beta | 37 | 11/27/2023 |
1.4.0.7-beta | 58 | 11/8/2023 |
1.4.0.6-beta | 34 | 11/7/2023 |
1.4.0.4-beta | 68 | 11/1/2023 |
1.4.0.3 | 121 | 10/31/2023 |
1.3.4.10-beta | 63 | 10/25/2023 |
1.3.4.9-beta | 70 | 10/24/2023 |
1.3.4.8-beta | 75 | 10/17/2023 |
1.3.4.7-beta | 85 | 10/10/2023 |
1.3.4.6-beta | 100 | 10/5/2023 |
1.3.4.5-beta | 92 | 10/4/2023 |
1.3.4.4-beta | 98 | 10/3/2023 |
1.3.4.3-beta | 97 | 10/3/2023 |
1.3.4.2-beta | 112 | 9/30/2023 |
1.3.4.1-beta | 113 | 9/30/2023 |
1.3.4 | 173 | 9/26/2023 |
1.3.2.5-beta | 120 | 9/21/2023 |
1.3.2.4-beta | 116 | 9/20/2023 |
1.3.2.3-beta | 118 | 9/19/2023 |
1.3.2.2-beta | 130 | 9/15/2023 |
1.3.2.1-beta | 147 | 9/14/2023 |
1.3.2-beta | 141 | 9/13/2023 |
1.3.1.1-beta | 164 | 9/5/2023 |
1.3.0 | 265 | 8/29/2023 |
1.2.1.11-beta | 210 | 8/24/2023 |
1.2.1.9-beta | 197 | 8/17/2023 |
1.2.1.8-beta | 207 | 8/8/2023 |
1.2.1.6-beta | 253 | 8/4/2023 |
1.2.0 | 333 | 8/1/2023 |
1.1.1.11-beta | 281 | 7/24/2023 |
1.1.1.10-beta | 277 | 7/22/2023 |
1.1.1.9-beta | 266 | 7/22/2023 |
1.1.1.8-beta | 259 | 7/21/2023 |
1.1.0 | 307 | 7/11/2023 |
1.0.2.1 | 287 | 6/3/2023 |
1.0.2 | 299 | 6/3/2023 |
1.0.0.1 | 270 | 5/30/2023 |
1.0.0 | 258 | 5/28/2023 |
0.99.0 | 267 | 5/28/2023 |
0.98.2-alpha | 251 | 5/27/2023 |
0.98.0 | 268 | 5/6/2023 |
0.96.0 | 337 | 4/2/2023 |
0.95.0 | 378 | 3/5/2023 |
0.94.2 | 392 | 2/7/2023 |
0.94.1 | 392 | 2/2/2023 |
0.92.5 | 434 | 12/31/2022 |
0.90.0 | 478 | 11/23/2022 |
0.89.2 | 457 | 11/23/2022 |
0.1.33 | 462 | 11/21/2022 |
0.1.32 | 527 | 10/24/2022 |
0.1.29 | 553 | 5/30/2022 |
0.1.23 | 562 | 3/7/2022 |
0.1.21 | 427 | 12/21/2021 |
0.1.20 | 455 | 11/8/2021 |
0.1.19 | 543 | 9/8/2021 |
0.1.18 | 473 | 8/5/2021 |
0.1.17 | 470 | 7/5/2021 |
0.1.16 | 484 | 5/25/2021 |
0.1.12 | 508 | 3/17/2021 |
0.1.8 | 517 | 2/8/2021 |
0.1.4 | 513 | 1/13/2021 |
0.1.0 | 533 | 1/13/2021 |