Project Description
This is a WinRT SDK for the WowWee MiP robot.
http://www.wowwee.com/mip/
You need Visual Studio 2015 to use the code.
Now with support for both Windows 8 and Windows 10.
Usage:
var firstMiP = (await
MiPFactory.GetPairedMiPDevices()).FirstOrDefault();
if (firstMiP !=
null)
{
Robot =
MiPFactory.CreateMiP(firstMiP);
Robot.Connect();
}