RpiUno 1.0.0

dotnet add package RpiUno --version 1.0.0
NuGet\Install-Package RpiUno -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RpiUno" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RpiUno --version 1.0.0
#r "nuget: RpiUno, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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:

  1. RecieveSensorData: Sends a byte '0' to arduino to indicate operation to receive sensor data.
  2. RecieveDeviceState: Sends a byte '1' to arduino to indicate operation to receive a Pin's state
  3. SendIOSignal: Sends a byte '2' to arduino to indicate operation to turn a pin HIGH or LOW

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 Compatible and additional computed target framework versions.
Universal Windows Platform netcore50 is compatible.  uap was computed.  uap10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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,074 3/31/2019

Currently supports Arduino UNO and Mega