Home

Awesome

Raspberry Remote for Windows 10 IoT Core

About

Control your remote plugs with your Raspberry Pi running Windows 10 IoT Core.

The code of this project is based on the code from the Raspberry-Remote project.

Instead of using wiringPi this project uses the Windows.Devices.Gpio interface provided by Microsoft in the extension Windows IoT Extensions for the UWP.

Credits

Required Hardware

Setup

Usage

	using RaspberryRemote;
    RCSwitch switch = new RCSwitch();
	switch.EnableTransmit(5);
	switch.SwitchOn("11011", 1);

The first parameter is the code of the switch group (refers to DIP switches 1..5 where "1" = on and "0" = off, if all DIP switches are on it's "11111"). The second parameter is the number of the switch itself (1..4).

	switch.SwitchOff("11011", 1);

A short example will follow soon.