RpiUno 1.0.0
dotnet add package RpiUno --version 1.0.0
NuGet\Install-Package RpiUno -Version 1.0.0
<PackageReference Include="RpiUno" Version="1.0.0" />
paket add RpiUno --version 1.0.0
#r "nuget: RpiUno, 1.0.0"
// Install RpiUno as a Cake Addin #addin nuget:?package=RpiUno&version=1.0.0 // Install RpiUno as a Cake Tool #tool nuget:?package=RpiUno&version=1.0.0
Windows Runtime Component to enable Communication with Arduino in Windows 10 IoT Core UWPs
Install Package using Package Manager
Install-Package RpiUno -Version 1.0.0
Intall Package using .NET-Cli
dotnet add package RpiUno --version 1.0.0
The Package currently supports communication over I2C bus.
Include using RpiUno;
where you need to use the package.
Modes
The package classifies Arduino operations into three modes:
RecieveSensorData
: Sends a byte '0' to arduino to indicate operation to receive sensor data.RecieveDeviceState
: Sends a byte '1' to arduino to indicate operation to receive a Pin's stateSendIOSignal
: Sends a byte '2' to arduino to indicate operation to turn a pinHIGH
orLOW
Read-Write to Arduino
Make an asynchronus call to ReadWriteAsync()
method to perform a read or write operation on Arduino.
Turn a pin High / Low
await UnoI2C.ReadWriteAsync("Mention slave address (int)", Mode.SendIOSignal, (Pin Number as byte), PinValue.High);
Read Sensor Data
await UnoI2C.ReadWriteAsync(Mention slave address (int), Mode.RecieveSensorData, (Sensor Pin Number as byte));
Read Pin State
await UnoI2C.ReadWriteAsync(Mention slave address (int), Mode.RecieveDeviceState, (Sensor Pin Number as byte));
Product | Versions Compatible and additional computed target framework versions. |
---|---|
Universal Windows Platform | netcore50 is compatible. uap was computed. uap10.0 is compatible. |
This package has no dependencies.
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.0.0 | 1,115 | 3/31/2019 |
Currently supports Arduino UNO and Mega