Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent
1.4.0.6-beta
dotnet add package Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent --version 1.4.0.6-beta
NuGet\Install-Package Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent -Version 1.4.0.6-beta
<PackageReference Include="Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent" Version="1.4.0.6-beta" />
paket add Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent --version 1.4.0.6-beta
#r "nuget: Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent, 1.4.0.6-beta"
// Install Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent as a Cake Addin #addin nuget:?package=Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent&version=1.4.0.6-beta&prerelease // Install Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent as a Cake Tool #tool nuget:?package=Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent&version=1.4.0.6-beta&prerelease
Meadow.Foundation.mikroBUS.Sensors.Buttons.CACCurrent
MikroElectronika SPI AC Current click board
The CACCurrent 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
private CACCurrent currentClick;
private const bool useSpi = false;
public override Task Initialize()
{
Console.WriteLine("Initializing ...");
if (useSpi)
{
currentClick = new CACCurrent(
Device.CreateSpiBus(),
Device.Pins.D14.CreateDigitalOutputPort());
}
else
{
currentClick = new CACCurrent(Device.Pins.A00.CreateAnalogInputPort(5));
}
currentClick.CurrentUpdated += OnCurrentUpdated;
currentClick.StartUpdating();
return Task.CompletedTask;
}
public override async Task Run()
{
while (true)
{
var r = await currentClick.Read();
Resolver.Log.Info($"Reading: {r.Amps:0.00} A");
await Task.Delay(1000);
}
}
private void OnCurrentUpdated(object sender, IChangeResult<Meadow.Units.Current> e)
{
Resolver.Log.Info($"Current changed from {(e.Old ?? new Meadow.Units.Current(0)).Amps}A to {e.New.Amps}A");
}
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.mikroBus 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. 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.ICs.ADCs.Mcp3xxx (>= 1.4.0.6-beta)
- Meadow.Foundation.Sensors.Power.CurrentTransducer (>= 1.4.0.6-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 |
---|