├── .gitignore ├── LICENSE ├── README.md ├── RobotApp ├── RobotApp.sln └── RobotApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── ApplicationInsights.config │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── Controllers.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MotorControl.cs │ ├── NetworkCmd.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── RobotApp.csproj │ ├── RobotApp_TemporaryKey.pfx │ ├── XboxHidController.cs │ └── project.json └── images ├── AppDirectionals.png ├── RobotAppPins.PNG ├── RobotAppScreen.png └── RobotKit.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/README.md -------------------------------------------------------------------------------- /RobotApp/RobotApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp.sln -------------------------------------------------------------------------------- /RobotApp/RobotApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/App.xaml -------------------------------------------------------------------------------- /RobotApp/RobotApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/App.xaml.cs -------------------------------------------------------------------------------- /RobotApp/RobotApp/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/ApplicationInsights.config -------------------------------------------------------------------------------- /RobotApp/RobotApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /RobotApp/RobotApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /RobotApp/RobotApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /RobotApp/RobotApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /RobotApp/RobotApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /RobotApp/RobotApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /RobotApp/RobotApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /RobotApp/RobotApp/Controllers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Controllers.cs -------------------------------------------------------------------------------- /RobotApp/RobotApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/MainPage.xaml -------------------------------------------------------------------------------- /RobotApp/RobotApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /RobotApp/RobotApp/MotorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/MotorControl.cs -------------------------------------------------------------------------------- /RobotApp/RobotApp/NetworkCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/NetworkCmd.cs -------------------------------------------------------------------------------- /RobotApp/RobotApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Package.appxmanifest -------------------------------------------------------------------------------- /RobotApp/RobotApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RobotApp/RobotApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /RobotApp/RobotApp/RobotApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/RobotApp.csproj -------------------------------------------------------------------------------- /RobotApp/RobotApp/RobotApp_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/RobotApp_TemporaryKey.pfx -------------------------------------------------------------------------------- /RobotApp/RobotApp/XboxHidController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/XboxHidController.cs -------------------------------------------------------------------------------- /RobotApp/RobotApp/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/RobotApp/RobotApp/project.json -------------------------------------------------------------------------------- /images/AppDirectionals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/images/AppDirectionals.png -------------------------------------------------------------------------------- /images/RobotAppPins.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/images/RobotAppPins.PNG -------------------------------------------------------------------------------- /images/RobotAppScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/images/RobotAppScreen.png -------------------------------------------------------------------------------- /images/RobotKit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ms-iot/build2015-robot-kit/HEAD/images/RobotKit.png --------------------------------------------------------------------------------