RpiUno.Pratik 1.0.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package RpiUno.Pratik --version 1.0.0
NuGet\Install-Package RpiUno.Pratik -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.Pratik" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RpiUno.Pratik --version 1.0.0
#r "nuget: RpiUno.Pratik, 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.Pratik as a Cake Addin
#addin nuget:?package=RpiUno.Pratik&version=1.0.0

// Install RpiUno.Pratik as a Cake Tool
#tool nuget:?package=RpiUno.Pratik&version=1.0.0

Windows Runtime Component to enable Communication with Arduino in Windows 10 IoT Core UWPs

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 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

Currently supports Arduino UNO and Mega