Meadow.Foundation.Sensors.Light.Alspt19315C
1.2.1.11-beta
See the version list below for details.
dotnet add package Meadow.Foundation.Sensors.Light.Alspt19315C --version 1.2.1.11-beta
NuGet\Install-Package Meadow.Foundation.Sensors.Light.Alspt19315C -Version 1.2.1.11-beta
<PackageReference Include="Meadow.Foundation.Sensors.Light.Alspt19315C" Version="1.2.1.11-beta" />
paket add Meadow.Foundation.Sensors.Light.Alspt19315C --version 1.2.1.11-beta
#r "nuget: Meadow.Foundation.Sensors.Light.Alspt19315C, 1.2.1.11-beta"
// Install Meadow.Foundation.Sensors.Light.Alspt19315C as a Cake Addin #addin nuget:?package=Meadow.Foundation.Sensors.Light.Alspt19315C&version=1.2.1.11-beta&prerelease // Install Meadow.Foundation.Sensors.Light.Alspt19315C as a Cake Tool #tool nuget:?package=Meadow.Foundation.Sensors.Light.Alspt19315C&version=1.2.1.11-beta&prerelease
Meadow.Foundation.Sensors.Light.Alspt19315C
ALS-PT19-315C analog light sensor
The Alspt19315C 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 of Wilderness Labs open-source projects, including samples, visit github.com/wildernesslabs
Usage
Alspt19315C sensor;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
// configure our sensor
sensor = new Alspt19315C(Device.Pins.A03);
//==== IObservable Pattern with an optional notification filter
var consumer = Alspt19315C.CreateObserver(
handler: result => Resolver.Log.Info($"Observer filter satisfied: {result.New.Volts:N2}V, old: {result.Old?.Volts:N2}V"),
// only notify if the change is greater than 0.5V
filter: result =>
{
if (result.Old is { } old)
{ //c# 8 pattern match syntax. checks for !null and assigns var.
return (result.New - old).Abs().Volts > 0.5; // returns true if > 0.5V change.
}
return false;
}
);
sensor.Subscribe(consumer);
//==== Classic Events Pattern
sensor.Updated += (sender, result) =>
{
Resolver.Log.Info($"Voltage Changed, new: {result.New.Volts:N2}V, old: {result.Old?.Volts:N2}V");
};
return Task.CompletedTask;
}
public override async Task Run()
{
var result = await sensor.Read();
Resolver.Log.Info($"Initial temp: {result.Volts:N2}V");
sensor.StartUpdating(TimeSpan.FromMilliseconds(1000));
}
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-browser 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.2.1.11-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.15.0.6-beta | 50 | 11/20/2024 |
1.15.0.5-beta | 52 | 11/19/2024 |
1.15.0.4-beta | 61 | 11/16/2024 |
1.15.0.3-beta | 75 | 11/4/2024 |
1.15.0.2-beta | 63 | 10/29/2024 |
1.15.0.1-beta | 58 | 10/22/2024 |
1.15.0 | 98 | 10/15/2024 |
1.14.0.6-beta | 64 | 10/8/2024 |
1.14.0.5-beta | 63 | 10/2/2024 |
1.14.0.4-beta | 76 | 9/24/2024 |
1.14.0.3-beta | 93 | 9/17/2024 |
1.14.0.2-beta | 103 | 9/12/2024 |
1.14.0.1-beta | 83 | 9/10/2024 |
1.14.0 | 102 | 9/5/2024 |
1.13.0.1-beta | 109 | 8/21/2024 |
1.13.0 | 119 | 8/15/2024 |
1.12.8.7-beta | 99 | 8/14/2024 |
1.12.8.6-beta | 70 | 8/6/2024 |
1.12.8.5-beta | 61 | 7/30/2024 |
1.12.8.4-beta | 65 | 7/30/2024 |
1.12.8.2-beta | 105 | 7/24/2024 |
1.12.8.1-beta | 94 | 7/17/2024 |
1.12.8 | 80 | 7/11/2024 |
1.12.2.9-beta | 97 | 7/9/2024 |
1.12.2.7-beta | 95 | 7/3/2024 |
1.12.2.6-beta | 85 | 6/29/2024 |
1.12.2.5-beta | 94 | 6/28/2024 |
1.12.2.4-beta | 80 | 6/24/2024 |
1.12.2.3-beta | 88 | 6/24/2024 |
1.12.2.1-beta | 96 | 6/19/2024 |
1.12.2 | 90 | 6/11/2024 |
1.12.0.2-beta | 93 | 6/4/2024 |
1.12.0.1-beta | 87 | 5/30/2024 |
1.12.0 | 127 | 5/28/2024 |
1.11.0.5-beta | 99 | 5/24/2024 |
1.11.0.4-beta | 94 | 5/21/2024 |
1.11.0.3-beta | 140 | 5/15/2024 |
1.11.0.2-beta | 81 | 5/9/2024 |
1.11.0.1-beta | 98 | 5/8/2024 |
1.11.0 | 135 | 4/30/2024 |
1.10.2.1-beta | 107 | 4/23/2024 |
1.10.2 | 112 | 4/17/2024 |
1.10.0.3-beta | 92 | 4/15/2024 |
1.10.0.2-beta | 89 | 4/11/2024 |
1.10.0.1-beta | 100 | 4/5/2024 |
1.10.0 | 154 | 3/26/2024 |
1.9.0.6-beta | 127 | 3/25/2024 |
1.9.0.5-beta | 122 | 3/19/2024 |
1.9.0.4-beta | 145 | 3/13/2024 |
1.9.0.3 | 181 | 3/6/2024 |
1.9.0.2-beta | 164 | 3/6/2024 |
1.9.0.1 | 212 | 3/1/2024 |
1.9.0 | 229 | 2/27/2024 |
1.8.0.8-beta | 191 | 2/23/2024 |
1.8.0.7-beta | 192 | 2/22/2024 |
1.8.0.6-beta | 197 | 2/20/2024 |
1.8.0.5-beta | 213 | 2/13/2024 |
1.8.0.4-beta | 224 | 2/6/2024 |
1.8.0.3-beta | 237 | 2/1/2024 |
1.8.0.2-beta | 273 | 1/24/2024 |
1.8.0.1 | 323 | 1/20/2024 |
1.8.0 | 357 | 1/16/2024 |
1.7.0 | 358 | 1/9/2024 |
1.6.0.6-beta | 339 | 1/3/2024 |
1.6.0.5-beta | 344 | 12/27/2023 |
1.6.0.4-beta | 375 | 12/20/2023 |
1.6.0.3-beta | 385 | 12/19/2023 |
1.6.0.2-beta | 396 | 12/12/2023 |
1.6.0 | 521 | 12/6/2023 |
1.5.0.1-beta | 431 | 12/4/2023 |
1.5.0 | 470 | 11/28/2023 |
1.4.0.9-beta | 407 | 11/28/2023 |
1.4.0.8-beta | 435 | 11/27/2023 |
1.4.0.7-beta | 402 | 11/8/2023 |
1.4.0.6-beta | 397 | 11/7/2023 |
1.4.0.4-beta | 436 | 11/1/2023 |
1.4.0.3 | 492 | 10/31/2023 |
1.3.4.10-beta | 430 | 10/25/2023 |
1.3.4.9-beta | 443 | 10/24/2023 |
1.3.4.8-beta | 463 | 10/17/2023 |
1.3.4.7-beta | 443 | 10/10/2023 |
1.3.4.6-beta | 431 | 10/5/2023 |
1.3.4.5-beta | 455 | 10/4/2023 |
1.3.4.4-beta | 435 | 10/3/2023 |
1.3.4.3-beta | 471 | 10/3/2023 |
1.3.4.2-beta | 480 | 9/30/2023 |
1.3.4.1-beta | 459 | 9/30/2023 |
1.3.4 | 566 | 9/26/2023 |
1.3.2.5-beta | 471 | 9/21/2023 |
1.3.2.4-beta | 471 | 9/20/2023 |
1.3.2.3-beta | 469 | 9/19/2023 |
1.3.2.2-beta | 458 | 9/15/2023 |
1.3.2.1-beta | 491 | 9/14/2023 |
1.3.2-beta | 491 | 9/13/2023 |
1.3.1.1-beta | 508 | 9/5/2023 |
1.3.0 | 615 | 8/29/2023 |
1.2.1.11-beta | 513 | 8/24/2023 |
1.2.1.9-beta | 548 | 8/17/2023 |
1.2.1.8-beta | 600 | 8/8/2023 |
1.2.1.6-beta | 577 | 8/4/2023 |
1.2.0 | 693 | 8/1/2023 |
1.1.1.11-beta | 594 | 7/24/2023 |
1.1.1.10-beta | 591 | 7/22/2023 |
1.1.1.9-beta | 588 | 7/22/2023 |
1.1.1.8-beta | 602 | 7/21/2023 |
1.1.0 | 661 | 7/11/2023 |
1.0.2.1 | 625 | 6/3/2023 |
1.0.2 | 623 | 6/3/2023 |
1.0.0.1 | 637 | 5/30/2023 |
1.0.0 | 643 | 5/28/2023 |
0.99.0 | 634 | 5/28/2023 |
0.98.2-alpha | 589 | 5/27/2023 |
0.98.0 | 617 | 5/6/2023 |
0.96.0 | 698 | 4/2/2023 |
0.95.0 | 722 | 3/5/2023 |
0.94.2 | 748 | 2/7/2023 |
0.94.1 | 756 | 2/2/2023 |
0.92.5 | 780 | 12/31/2022 |
0.90.0 | 854 | 11/23/2022 |
0.89.2 | 804 | 11/23/2022 |
0.1.56 | 811 | 11/21/2022 |
0.1.55 | 887 | 10/24/2022 |
0.1.52 | 913 | 5/30/2022 |
0.1.46 | 968 | 3/7/2022 |
0.1.44 | 761 | 12/21/2021 |
0.1.43 | 782 | 11/8/2021 |
0.1.42 | 892 | 9/8/2021 |
0.1.41 | 840 | 8/5/2021 |
0.1.40 | 838 | 7/5/2021 |
0.1.39 | 833 | 5/25/2021 |
0.1.35 | 816 | 5/25/2021 |