├── .gitignore ├── AMQPNetLite ├── AMQPNetLite.sln ├── AMQPNetLiteIoT_Server │ ├── AMQPServerIoTExample.csproj │ └── Program.cs └── AMQPNetLite_Client │ ├── AMQClientMac.sln │ ├── AMQPClientMacExample.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── AzureSqlDatabase └── IoTAzureSqlDatabaseExample │ ├── IoTAzureSqlDatabaseExample.sln │ ├── IoTAzureSqlDatabase_EntityFramework_Example │ ├── App.config │ ├── IoTAzureSqlDatabase.EntityFrameworkExample.csproj │ ├── Program.cs │ ├── User.cs │ └── UsersContext.cs │ └── IoTAzureSqlDatabase_SqlClient_Example │ ├── Extensions.cs │ ├── IoTAzureSqlDatabase.SQLClientExample.csproj │ ├── Program.cs │ └── User.cs ├── Forms.Gtk ├── Metadata.xml ├── Screenshots │ ├── GTK.png │ ├── WeatherApp-All-sml.png │ └── WeatherApp-All.png ├── WeatherApp.sln ├── WeatherApp │ ├── WeatherApp.Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ └── drawable │ │ │ │ └── icon.png │ │ ├── WeatherApp.Droid.csproj │ │ └── packages.config │ ├── WeatherApp.GTK.Raspberry │ │ ├── HumiditySensor.cs │ │ ├── Program.cs │ │ ├── WeatherApp.Gtk.Raspberry.csproj │ │ └── app.config │ ├── WeatherApp.GTK │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── WeatherApp.GTK.csproj │ │ ├── app.config │ │ └── packages.config │ └── WeatherApp │ │ ├── App.cs │ │ ├── Core.cs │ │ ├── DataService.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Sensor │ │ ├── BaseHumiditySensor.cs │ │ ├── FakeHumiditySensor.cs │ │ └── IHumiditySensor.cs │ │ ├── Weather.cs │ │ ├── WeatherApp.csproj │ │ ├── WeatherPage.xaml │ │ ├── WeatherPage.xaml.cs │ │ └── packages.config └── readme.md ├── Hermes.Mqtt ├── IoTMqttTest.Server │ ├── IoTMqttTest.Server.csproj │ └── Program.cs ├── MqttHermesExample.sln └── MqttTest.Client │ ├── App.config │ ├── MqttTest.Client.csproj │ ├── MqttTest.Client.csproj.user │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── IoTSharp.Components ├── HubExamples │ ├── BlindHubTest.cs │ ├── ButtonHubTest.cs │ ├── RelayHubTest.cs │ └── SensorHubTest.cs ├── IoTSharpComponents.Example.csproj ├── IoTSharpComponents.Example.sln ├── Program.cs └── README.md ├── LICENSE ├── Microsoft.AspNet.WebApi ├── HomeAutomation.Blind.IOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Entitlements.plist │ ├── HomeAutomation.Blind.IOS.csproj │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Main.storyboard │ ├── Remote.png │ ├── Settings.bundle │ │ └── Root.plist │ ├── ViewController.cs │ └── ViewController.designer.cs ├── HomeAutomation.Blind.Server │ ├── HomeAutomation.Blind.Server.csproj │ ├── IoTFactory.cs │ ├── IoTServiceController.cs │ └── Program.cs ├── HomeAutomation.sln ├── LicenseAndCredit.txt ├── README.md └── ReleaseNotesv0.1.md ├── README.md └── Speech.Recognition ├── Audio ├── Long Audio 2.wav └── Long Audio.wav ├── Models ├── cmudict-en-us.dict ├── digits.dict ├── en-us.lm.dmp ├── feat.params ├── hello.gram ├── mdef ├── means ├── mixture_weights ├── noisedict ├── sendump ├── transition_matrices └── variances ├── Program.cs ├── Speech.Recognition.Example.csproj └── Speech.Recognition.Example.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLite.sln -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLiteIoT_Server/AMQPServerIoTExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLiteIoT_Server/AMQPServerIoTExample.csproj -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLiteIoT_Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLiteIoT_Server/Program.cs -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLite_Client/AMQClientMac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLite_Client/AMQClientMac.sln -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLite_Client/AMQPClientMacExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLite_Client/AMQPClientMacExample.csproj -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLite_Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLite_Client/Program.cs -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLite_Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLite_Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AMQPNetLite/AMQPNetLite_Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AMQPNetLite/AMQPNetLite_Client/packages.config -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabaseExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabaseExample.sln -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/App.config -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/IoTAzureSqlDatabase.EntityFrameworkExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/IoTAzureSqlDatabase.EntityFrameworkExample.csproj -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/Program.cs -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/User.cs -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/UsersContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_EntityFramework_Example/UsersContext.cs -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/Extensions.cs -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/IoTAzureSqlDatabase.SQLClientExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/IoTAzureSqlDatabase.SQLClientExample.csproj -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/Program.cs -------------------------------------------------------------------------------- /AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/AzureSqlDatabase/IoTAzureSqlDatabaseExample/IoTAzureSqlDatabase_SqlClient_Example/User.cs -------------------------------------------------------------------------------- /Forms.Gtk/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/Metadata.xml -------------------------------------------------------------------------------- /Forms.Gtk/Screenshots/GTK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/Screenshots/GTK.png -------------------------------------------------------------------------------- /Forms.Gtk/Screenshots/WeatherApp-All-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/Screenshots/WeatherApp-All-sml.png -------------------------------------------------------------------------------- /Forms.Gtk/Screenshots/WeatherApp-All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/Screenshots/WeatherApp-All.png -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp.sln -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/WeatherApp.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/WeatherApp.Droid.csproj -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.Droid/packages.config -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/HumiditySensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/HumiditySensor.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/Program.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/WeatherApp.Gtk.Raspberry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/WeatherApp.Gtk.Raspberry.csproj -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK.Raspberry/app.config -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK/Program.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK/WeatherApp.GTK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK/WeatherApp.GTK.csproj -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK/app.config -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp.GTK/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp.GTK/packages.config -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/App.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/Core.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/DataService.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/Sensor/BaseHumiditySensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/Sensor/BaseHumiditySensor.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/Sensor/FakeHumiditySensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/Sensor/FakeHumiditySensor.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/Sensor/IHumiditySensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/Sensor/IHumiditySensor.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/Weather.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/WeatherApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/WeatherApp.csproj -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/WeatherPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/WeatherPage.xaml -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/WeatherPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/WeatherPage.xaml.cs -------------------------------------------------------------------------------- /Forms.Gtk/WeatherApp/WeatherApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/WeatherApp/WeatherApp/packages.config -------------------------------------------------------------------------------- /Forms.Gtk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Forms.Gtk/readme.md -------------------------------------------------------------------------------- /Hermes.Mqtt/IoTMqttTest.Server/IoTMqttTest.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/IoTMqttTest.Server/IoTMqttTest.Server.csproj -------------------------------------------------------------------------------- /Hermes.Mqtt/IoTMqttTest.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/IoTMqttTest.Server/Program.cs -------------------------------------------------------------------------------- /Hermes.Mqtt/MqttHermesExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/MqttHermesExample.sln -------------------------------------------------------------------------------- /Hermes.Mqtt/MqttTest.Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/MqttTest.Client/App.config -------------------------------------------------------------------------------- /Hermes.Mqtt/MqttTest.Client/MqttTest.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/MqttTest.Client/MqttTest.Client.csproj -------------------------------------------------------------------------------- /Hermes.Mqtt/MqttTest.Client/MqttTest.Client.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/MqttTest.Client/MqttTest.Client.csproj.user -------------------------------------------------------------------------------- /Hermes.Mqtt/MqttTest.Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/MqttTest.Client/Program.cs -------------------------------------------------------------------------------- /Hermes.Mqtt/MqttTest.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/MqttTest.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Hermes.Mqtt/MqttTest.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Hermes.Mqtt/MqttTest.Client/packages.config -------------------------------------------------------------------------------- /IoTSharp.Components/HubExamples/BlindHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/HubExamples/BlindHubTest.cs -------------------------------------------------------------------------------- /IoTSharp.Components/HubExamples/ButtonHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/HubExamples/ButtonHubTest.cs -------------------------------------------------------------------------------- /IoTSharp.Components/HubExamples/RelayHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/HubExamples/RelayHubTest.cs -------------------------------------------------------------------------------- /IoTSharp.Components/HubExamples/SensorHubTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/HubExamples/SensorHubTest.cs -------------------------------------------------------------------------------- /IoTSharp.Components/IoTSharpComponents.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/IoTSharpComponents.Example.csproj -------------------------------------------------------------------------------- /IoTSharp.Components/IoTSharpComponents.Example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/IoTSharpComponents.Example.sln -------------------------------------------------------------------------------- /IoTSharp.Components/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/Program.cs -------------------------------------------------------------------------------- /IoTSharp.Components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/IoTSharp.Components/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/AppDelegate.cs -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Entitlements.plist -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/HomeAutomation.Blind.IOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/HomeAutomation.Blind.IOS.csproj -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Info.plist -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Main.cs -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Main.storyboard -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Remote.png -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/ViewController.cs -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.IOS/ViewController.designer.cs -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/HomeAutomation.Blind.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/HomeAutomation.Blind.Server.csproj -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/IoTFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/IoTFactory.cs -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/IoTServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/IoTServiceController.cs -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.Blind.Server/Program.cs -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/HomeAutomation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/HomeAutomation.sln -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/LicenseAndCredit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/LicenseAndCredit.txt -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/README.md -------------------------------------------------------------------------------- /Microsoft.AspNet.WebApi/ReleaseNotesv0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Microsoft.AspNet.WebApi/ReleaseNotesv0.1.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/README.md -------------------------------------------------------------------------------- /Speech.Recognition/Audio/Long Audio 2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Audio/Long Audio 2.wav -------------------------------------------------------------------------------- /Speech.Recognition/Audio/Long Audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Audio/Long Audio.wav -------------------------------------------------------------------------------- /Speech.Recognition/Models/cmudict-en-us.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/cmudict-en-us.dict -------------------------------------------------------------------------------- /Speech.Recognition/Models/digits.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/digits.dict -------------------------------------------------------------------------------- /Speech.Recognition/Models/en-us.lm.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/en-us.lm.dmp -------------------------------------------------------------------------------- /Speech.Recognition/Models/feat.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/feat.params -------------------------------------------------------------------------------- /Speech.Recognition/Models/hello.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/hello.gram -------------------------------------------------------------------------------- /Speech.Recognition/Models/mdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/mdef -------------------------------------------------------------------------------- /Speech.Recognition/Models/means: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/means -------------------------------------------------------------------------------- /Speech.Recognition/Models/mixture_weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/mixture_weights -------------------------------------------------------------------------------- /Speech.Recognition/Models/noisedict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/noisedict -------------------------------------------------------------------------------- /Speech.Recognition/Models/sendump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/sendump -------------------------------------------------------------------------------- /Speech.Recognition/Models/transition_matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/transition_matrices -------------------------------------------------------------------------------- /Speech.Recognition/Models/variances: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Models/variances -------------------------------------------------------------------------------- /Speech.Recognition/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Program.cs -------------------------------------------------------------------------------- /Speech.Recognition/Speech.Recognition.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Speech.Recognition.Example.csproj -------------------------------------------------------------------------------- /Speech.Recognition/Speech.Recognition.Example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-iot-samples/HEAD/Speech.Recognition/Speech.Recognition.Example.sln --------------------------------------------------------------------------------