├── .gitignore ├── .vs ├── Open Source Automation │ └── v15 │ │ └── sqlite3 │ │ └── storage.ide └── config │ └── applicationhost.config ├── Assemblies ├── CommStudio.Express.3.5.dll ├── ICSharpCode.SharpZipLib.dll ├── InTheHand.Net.Personal.dll ├── MjpegProcessor.dll ├── MySql.Data.dll ├── NationalWeatherServiceLibrary.dll ├── NetworkCommsDotNetComplete.dll ├── Newtonsoft.Json.dll ├── OSAE.UI.Controls.dll ├── SimpleTextMessageEncoderLibrary.dll ├── WpfAnimatedGif.dll ├── agsXMPP.dll ├── log4net.dll └── log4net.xml ├── DB ├── 0.3.8-0.3.9.sql ├── 0.3.9-0.4.0.sql ├── 0.4.0-0.4.1.sql ├── 0.4.1-0.4.2.sql ├── 0.4.2-0.4.3.sql ├── 0.4.3-0.4.4.sql ├── 0.4.6-0.4.7.sql ├── 0.4.7-0.4.8.sql ├── 0.4.8-0.4.9.sql ├── cleanup.sql ├── osae.sql ├── osae_038.sql ├── osae_039.sql ├── osae_040.sql ├── osae_041.sql ├── osae_042.sql ├── osae_043.sql ├── osae_044.sql ├── osae_045.sql ├── osae_046.sql ├── osae_047.sql ├── osae_048.sql ├── osae_049.sql └── osae_049_old.sql ├── License.txt ├── OSA Test Sheet.ods ├── OSAE.API ├── App.config ├── Dapper │ └── SqlMapper.cs ├── Enums │ └── DaysOfWeek.cs ├── General │ ├── Common.cs │ ├── DBConnectionStatus.cs │ ├── Logging.cs │ ├── ModifyRegistry.cs │ ├── OSAELog.cs │ └── OSAESql.cs ├── OSAE.API.csproj ├── OSAEAdmin │ ├── OSAEAdmin.cs │ └── OSAEAdminManager.cs ├── OSAEGrammar │ └── OSAEGrammar.cs ├── OSAEImage │ ├── OSAEImage.cs │ └── OSAEImageManager.cs ├── OSAEMethod │ ├── OSAEMethod.cs │ ├── OSAEMethodCollection.cs │ └── OSAEMethodManager.cs ├── OSAEObject │ ├── OSAEObject.cs │ ├── OSAEObjectCollection.cs │ └── OSAEObjectManager.cs ├── OSAEObjectProperty │ ├── OSAEObjectPopertyManager.cs │ ├── OSAEObjectProperty.cs │ └── OSAEObjectPropertyCollection.cs ├── OSAEObjectState │ ├── OSAEObjectState.cs │ └── OSAEObjectStateManager.cs ├── OSAEObjectType │ ├── OSAEObjectType.cs │ └── OSAEObjectTypeManager.cs ├── OSAESchedule.cs │ ├── OSAERecurringSchedule.cs │ └── OSAEScheduleManager.cs ├── OSAEScreenControl │ ├── OSAEScreenControl.cs │ └── OSAEScreenControlManager.cs ├── OSAEScript │ ├── OSAEScriptManager.cs │ └── OSAEScriptProcessor.cs ├── OSAESecurity.cs ├── OSAESecurity │ └── OSAESecurity.cs ├── OSAEService │ ├── OSAEServiceBase.cs │ ├── OSAEServiceController.Designer.cs │ ├── OSAEServiceController.cs │ └── OSAEServiceController.resx ├── OSAEUserControl │ ├── GlobalUserControls.cs │ ├── OSAEMainUserCtrl.cs │ ├── OSAEUserControl.cs │ ├── OSAEUserControlBase.cs │ ├── OSAEUserControlCollection.cs │ ├── OSAEUserControlDescription.cs │ ├── OSAEUserControlFinder.cs │ ├── OSAEUserControlManager.cs │ ├── PluginInterface.cs │ └── UserControlInterface.cs ├── Plugin │ ├── OSAEPluginBase.cs │ ├── OSAEPluginCollection.cs │ ├── Plugin.cs │ ├── PluginDescription.cs │ ├── PluginFinder.cs │ ├── PluginManager.cs │ └── TypeLocator.cs ├── Properties │ └── AssemblyInfo.cs └── keyfile.snk ├── Obsolete ├── GUI │ ├── ControlMethodImage.vb │ ├── ControlNavImage.vb │ ├── ControlPropertyLabel.vb │ ├── ControlStateImage.vb │ ├── ControlStaticLabel.vb │ ├── ControlTimerLabel.vb │ ├── ControlUserControl.vb │ ├── GUI.Designer.vb │ ├── GUI.resx │ ├── GUI.sln │ ├── GUI.vb │ ├── GUI.vbproj │ ├── Module1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── app.config │ ├── frmAddCameraViewer.Designer.vb │ ├── frmAddCameraViewer.resx │ ├── frmAddCameraViewer.vb │ ├── frmAddImageState.Designer.vb │ ├── frmAddImageState.resx │ ├── frmAddImageState.vb │ ├── frmAddMethodImage.Designer.vb │ ├── frmAddMethodImage.resx │ ├── frmAddMethodImage.vb │ ├── frmAddNavImage.Designer.vb │ ├── frmAddNavImage.resx │ ├── frmAddNavImage.vb │ ├── frmAddObject.Designer.vb │ ├── frmAddObject.resx │ ├── frmAddObject.vb │ ├── frmAddPropertyLabel.Designer.vb │ ├── frmAddPropertyLabel.resx │ ├── frmAddPropertyLabel.vb │ ├── frmAddPropertyOption.Designer.vb │ ├── frmAddPropertyOption.resx │ ├── frmAddPropertyOption.vb │ ├── frmAddScreen.Designer.vb │ ├── frmAddScreen.resx │ ├── frmAddScreen.vb │ ├── frmAddStaticLabel.Designer.vb │ ├── frmAddStaticLabel.resx │ ├── frmAddStaticLabel.vb │ ├── frmAddUserControl.Designer.vb │ ├── frmAddUserControl.resx │ ├── frmAddUserControl.vb │ ├── frmChangeScreen.Designer.vb │ ├── frmChangeScreen.resx │ ├── frmChangeScreen.vb │ ├── frmFilters.Designer.vb │ ├── frmFilters.resx │ ├── frmFilters.vb │ ├── frmLogs.designer.vb │ ├── frmLogs.resx │ ├── frmLogs.vb │ ├── frmObjectTypes.designer.vb │ ├── frmObjectTypes.resx │ ├── frmObjectTypes.vb │ ├── frmObjects.designer.vb │ ├── frmObjects.resx │ ├── frmObjects.vb │ ├── frmPatterns.designer.vb │ ├── frmPatterns.resx │ ├── frmPatterns.vb │ ├── frmPropertyList.designer.vb │ ├── frmPropertyList.resx │ ├── frmPropertyList.vb │ ├── frmSQLBox.designer.vb │ ├── frmSQLBox.resx │ ├── frmSQLBox.vb │ ├── frmScheduling.designer.vb │ ├── frmScheduling.resx │ ├── frmScheduling.vb │ ├── frmScreens.designer.vb │ ├── frmScreens.resx │ ├── frmScreens.vb │ ├── frmScriptEditor.designer.vb │ ├── frmScriptEditor.resx │ ├── frmScriptEditor.vb │ ├── frmScripts.designer.vb │ ├── frmScripts.resx │ ├── frmScripts.vb │ ├── frmTimerLabels.Designer.vb │ ├── frmTimerLabels.resx │ ├── frmTimerLabels.vb │ ├── mainIcon.ico │ ├── ucSlider1.Designer.vb │ ├── ucSlider1.resx │ ├── ucSlider1.vb │ ├── ucWeather.Designer.vb │ ├── ucWeather.resx │ └── ucWeather.vb └── LogViewer │ ├── App.xaml │ ├── App.xaml.cs │ ├── LogViewer.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ └── icon.ico │ └── icon.ico ├── Open Source Automation.sln ├── Plugin_License.txt ├── Plugins ├── EventGhost │ ├── .vs │ │ └── EventGhost │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── EventGhost.cs │ ├── EventGhost.csproj │ ├── EventGhost.osapd │ ├── EventGhost.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.Android │ ├── .vs │ │ └── OSAE.Android │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Android.osapd │ ├── OSAE.Android.sln │ ├── OSAE.Android │ │ ├── Android.cs │ │ ├── Android.osapd │ │ ├── AndroidDevice.cs │ │ ├── AndroidPushNotification.cs │ │ ├── GCMSender.cs │ │ ├── OSAE.Android.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.AprilaireThermostat │ ├── .vs │ │ └── OSAE.AprilaireThermostat │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── AprilaireThermostat.osapd │ ├── AprilaireThermostat.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.AprilaireThermostat.sln │ ├── OSAE.AprilaireThermostat.vbproj │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.Bluetooth │ ├── .vs │ │ └── OSAE.Bluetooth │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Bluetooth.cs │ ├── Bluetooth.osapd │ ├── Install.sql │ ├── OSAE.Bluetooth.csproj │ ├── OSAE.Bluetooth.sln │ ├── OSAE.Bluetooth.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Screenshot.jpg ├── OSAE.CM11A │ ├── .vs │ │ └── CM11A │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── CM11A.ocx │ ├── CM11A.osapd │ ├── CM11A.sln │ ├── CM11A.vbproj │ ├── CM11A.vbproj.user │ ├── Class1.vb │ ├── Interop.cm11a.dll │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.CM15A │ ├── .vs │ │ └── OSAE.CM15A │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── CM15A.osapd │ ├── Interop.ActiveHomeScriptLib.dll │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.CM15A.sln │ ├── OSAE.CM15A.vb │ ├── OSAE.CM15A.vbproj │ ├── OSAE.CM15A.vbproj.user │ ├── Screenshot.jpg │ ├── ahscript.dll │ ├── ahsdk_install.exe │ └── install.sql ├── OSAE.CM17A │ ├── .vs │ │ └── OSAE.CM17A │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── CM17A.osapd │ ├── CM17A.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.CM17A.sln │ ├── OSAE.CM17A.vbproj │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.COSMUpdater │ ├── .vs │ │ └── OSAE.COSMUpdater │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── COSMUpdater.cs │ ├── COSMUpdater.osapd │ ├── COSMWriter.cs │ ├── OSAE.COSMUpdater.csproj │ ├── OSAE.COSMUpdater.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.Computer Power │ ├── Computer Power.osapd │ ├── Computer Power.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.Computer Power.sln │ ├── OSAE.Computer Power.vbproj │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.ControlMaster │ ├── ControlMaster.osapd │ ├── ControlMaster.vb │ ├── OSAE.ControlMaster.sln │ ├── OSAE.ControlMaster.vbproj │ ├── Screenshot.jpg │ ├── install.sql │ └── mas.dll ├── OSAE.DSC Alarm │ ├── .vs │ │ └── OSAE.DSC Alarm │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── DSC Alarm.osapd │ ├── DSC Alarm.vb │ ├── Install.sql │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.DSC Alarm.sln │ ├── OSAE.DSC Alarm.vbproj │ └── Screenshot.jpg ├── OSAE.Email │ ├── Email.cs │ ├── Email.osapd │ ├── Install.sql │ ├── OSAE.Email.csproj │ ├── OSAE.Email.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Screenshot.jpg ├── OSAE.Global Cache │ ├── .vs │ │ └── OSAE.Global Cache │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Global Cache.osapd │ ├── Global Cache.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.Global Cache.sln │ ├── OSAE.Global Cache.vbproj │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.IP Camera │ ├── OSAE.IP Camera.sln │ └── OSAE.IP Camera │ │ └── AForge.dll ├── OSAE.IPCam │ ├── .vs │ │ └── IPCam │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── IPCam.cs │ ├── IPCam.csproj │ ├── IPCam.osapd │ ├── IPCam.sln │ ├── IP_Camera_PTZ_URL.txt │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── README.txt │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.Insteon │ ├── .vs │ │ └── Insteon │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Class1.vb │ ├── Insteon.osapd │ ├── Insteon.osapp │ ├── Insteon.sln │ ├── Insteon.vbproj │ ├── Insteon.vbproj.user │ ├── Module1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.J-Works │ ├── .vs │ │ └── OSAE.JWorks │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── J-Works.osapd │ ├── Jsb34x.dll │ ├── Jsb383.dll │ ├── OSAE.JWorks.csproj │ ├── OSAE.JWorks.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── install.sql │ └── jworks.cs ├── OSAE.Jabber │ ├── Install.sql │ ├── Jabber.cs │ ├── Jabber.osapd │ ├── OSAE.Jabber.csproj │ ├── OSAE.Jabber.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Screenshot.jpg ├── OSAE.KillAWatt │ ├── .vs │ │ └── OSAE.KillAWatt │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── KillAWatt.cs │ ├── KillAWatt.osapd │ ├── OSAE.KillAWatt.csproj │ ├── OSAE.KillAWatt.sln │ ├── OSAE.KillAWatt.suo │ ├── PowerCollection.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── install.sql │ └── xbee.cs ├── OSAE.LightswitchServer │ ├── .vs │ │ └── OSAE.LightswitchServer │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.LightswitchServer.sln │ ├── OSAE.LightswitchServer.suo │ ├── OSAE.LightswitchServer.vb │ └── OSAE.LightswitchServer.vbproj ├── OSAE.MediaCenter │ ├── .vs │ │ └── OSAE.MediaCenter │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── MediaCenter.cs │ ├── MediaCenter.osapd │ ├── MediaCenterDevice.cs │ ├── OSAE.MediaCenter.csproj │ ├── OSAE.MediaCenter.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Session.cs │ └── install.sql ├── OSAE.MeterReader │ ├── .vs │ │ └── OSAE.Meter Reader │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Install.sql │ ├── Meter Reader.osapd │ ├── Meter Reader.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.Meter Reader.sln │ ├── OSAE.Meter Reader.vbproj │ └── Screenshot.jpg ├── OSAE.Nest │ ├── .vs │ │ └── OSAE.Nest │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.Nest.sln │ └── OSAE.Nest │ │ ├── Compare.cs │ │ ├── FirebaseSharp.Portable.dll │ │ ├── Nest.cs │ │ ├── Nest.osapd │ │ ├── Newtonsoft.Json.dll │ │ ├── OSAE.Nest.csproj │ │ ├── OSAE.Nest.dll │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Screenshot.jpg │ │ ├── Screenshot_new.jpg │ │ ├── SmokeAlarm.cs │ │ ├── Structure.cs │ │ ├── Thermostat.cs │ │ └── install.sql ├── OSAE.NetworkMonitor │ ├── Install.sql │ ├── Network Monitor.osapd │ ├── NetworkMonitor.cs │ ├── OSAE.NetworkMonitor.csproj │ ├── OSAE.NetworkMonitor.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Screenshot.jpg ├── OSAE.OneWire │ ├── .vs │ │ └── OSAE.OneWire │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.OneWire.csproj │ ├── OSAE.OneWire.sln │ ├── OSAE.OneWire.suo │ ├── OW.Net.dll │ ├── OneWire.cs │ ├── OneWire.osapd │ ├── OneWireAPI.NET.dll │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── install.sql │ └── vjslib.dll ├── OSAE.Onkyo │ ├── .vs │ │ └── OSAE.Onkyo │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.Onkyo.sln │ ├── OSAE.Onkyo.suo │ ├── OSAE.Onkyo │ │ ├── Device.cs │ │ ├── DnsUtils.cs │ │ ├── Exception.cs │ │ ├── OSAE.Onkyo.csproj │ │ ├── Onkyo.cs │ │ ├── Onkyo.osapd │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Screenshot.jpg │ │ ├── UDPListen.cs │ │ ├── UDPSend.cs │ │ ├── install.sql │ │ └── obj │ │ │ └── Debug │ │ │ └── ResolveAssemblyReference.cache │ ├── Onkyo.osapd │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.Phidget-IK │ ├── .vs │ │ └── OSAE.Phidget-IK │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Class1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.Phidget-IK.sln │ ├── OSAE.Phidget-IK.vbproj │ ├── OSAE.Phidget-IK.vbproj.user │ ├── Phidget-IK.osapd │ ├── Phidget21.NET.XML │ ├── Phidget21.NET.dll │ ├── Phidget21.NET1.1.dll │ ├── Phidget21COM.dll │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.Phidget-RFID │ ├── .vs │ │ └── OSAE.Phidget-RFID │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Class1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.Phidget-RFID.sln │ ├── OSAE.Phidget-RFID.vbproj │ ├── OSAE.Phidget-RFID.vbproj.user │ ├── Phidget-RFID.osapd │ ├── Phidget21.NET.dll │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.Phidget-Servo │ ├── .vs │ │ └── Phidget-Servo │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Class1.vb │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Phidget-Servo.osapd │ ├── Phidget-Servo.sln │ ├── Phidget-Servo.vbproj │ ├── Phidget-Servo.vbproj.user │ ├── Phidget21.NET.dll │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.PowerShellProcessor │ ├── CmdLets │ │ ├── CmdLets.cs │ │ ├── Pachube │ │ │ ├── Account.cs │ │ │ ├── DoubleFeedItem.cs │ │ │ ├── Feed.cs │ │ │ ├── IFeedItem.cs │ │ │ ├── StringFeedItem.cs │ │ │ ├── get-osapachube.cs │ │ │ └── invoke-osapachube.cs │ │ ├── get-osa.cs │ │ ├── get-osagcalendar.cs │ │ ├── invoke-osa.cs │ │ ├── invoke-osalog.cs │ │ └── invoke-osanma.cs │ ├── OSAE.PowerShell.csproj │ ├── PowerShell.osapd │ ├── PowerShellPlugin.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── References │ │ ├── Google.GData.AccessControl.DLL │ │ ├── Google.GData.Calendar.dll │ │ ├── Google.GData.Client.dll │ │ ├── Google.GData.Extensions.dll │ │ └── NMALib.dll │ ├── Screenshot.jpg │ ├── install.sql │ ├── packages.config │ └── psintall.cs ├── OSAE.PubNub │ ├── .vs │ │ └── config │ │ │ └── applicationhost.config │ ├── Common │ │ ├── NavigationHelper.cs │ │ ├── ObservableDictionary.cs │ │ ├── RelayCommand.cs │ │ └── SuspensionManager.cs │ ├── JsonFx.dll │ ├── OSAPubNub.cs │ ├── OSAPubNub.csproj │ ├── OSAPubNub.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PubNub.osapd │ ├── PubnubCore │ │ ├── ClientNetworkStatus.cs │ │ ├── JsonFx.dll │ │ ├── LoggingMethod.cs │ │ ├── MD5.cs │ │ ├── Newtonsoft.Json.dll │ │ ├── Pubnub.cs │ │ ├── PubnubCore.cs │ │ ├── PubnubWin.cs │ │ └── ReconnectState.cs │ └── Screenshot.jpg ├── OSAE.RCSTR40 │ ├── .vs │ │ └── OSAE.RCSTR40 │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Install.sql │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.RCSTR40.sln │ ├── OSAE.RCSTR40.suo │ ├── OSAE.RCSTR40.vbproj │ ├── RCSTR40.osapd │ ├── RCSTR40.vb │ └── Screenshot.jpg ├── OSAE.RFXCOM │ ├── .vs │ │ └── OSAE.RFXCOM │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.RFXCOM.cs │ ├── OSAE.RFXCOM.csproj │ ├── OSAE.RFXCOM.sln │ ├── OSAE.RFXCOM.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RFXCOM.osapd │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.RSS │ ├── .vs │ │ └── OSAE.RSS │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.RSS.csproj │ ├── OSAE.RSS.sln │ ├── OSAE.RSS.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RSS.cs │ ├── RSS.osapd │ ├── Screenshot.jpg │ └── install.sql ├── OSAE.RadioThermostat │ ├── .vs │ │ └── OSAE.RadioThermostat │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.RadioThermostat.csproj │ ├── OSAE.RadioThermostat.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Radio Thermostat.osapd │ ├── RadioThermostat.cs │ ├── Screenshot.jpg │ ├── ThermostatLib.dll │ └── install.sql ├── OSAE.Rest │ ├── OSAE.Rest.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Rest.cs │ ├── Rest.osapd │ ├── Screenshot.jpg │ ├── WebService.cs │ └── install.sql ├── OSAE.Roomba │ ├── .vs │ │ └── OSAE.Roomba │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.Roomba.csproj │ ├── OSAE.Roomba.sln │ ├── OSAE.Roomba.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── DataSources │ │ │ ├── OSAE.OSAEObject.datasource │ │ │ └── System.Data.DataSet.datasource │ ├── Roomba.cs │ ├── RoombaSCI.dll │ ├── Service References │ │ └── ServiceReference1 │ │ │ ├── OSAE.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ ├── configuration91.svcinfo │ │ │ ├── service.wsdl │ │ │ ├── service.xsd │ │ │ ├── service1.xsd │ │ │ └── service2.xsd │ └── app.config ├── OSAE.SSH │ ├── .vs │ │ └── OSAE.SSH │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── DiffieHellman.dll │ ├── OSAE.SSH.csproj │ ├── OSAE.SSH.sln │ ├── OSAE.SSH.suo │ ├── Org.Mentalis.Security.dll │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SSH.cs │ ├── SSH.osapd │ ├── Screenshot.jpg │ ├── Tamir.SharpSSH.dll │ └── install.sql ├── OSAE.ScriptProcessor │ ├── Install.sql │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.ScriptProcessor.sln │ ├── OSAE.ScriptProcessor.vbproj │ ├── OSAE.ScriptProcessor.vbproj.user │ ├── Screenshot.jpg │ ├── Script Processor.osapd │ └── ScriptProcessor.vb ├── OSAE.Sony │ ├── .vs │ │ └── OSAE.Sony │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.Sony.csproj │ ├── OSAE.Sony.dll │ ├── OSAE.Sony.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.txt │ ├── Screenshot.jpg │ ├── Sony.cs │ ├── Sony.osapd │ ├── Sony.osapp │ ├── SonyAPILib.dll │ └── install.sql ├── OSAE.Speech │ ├── Install.sql │ ├── Interop.WMPLib.dll │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── Speech.cs │ ├── Speech.csproj │ ├── Speech.csproj.user │ ├── Speech.osapd │ └── Speech.sln ├── OSAE.SqueezeCenter │ ├── .vs │ │ └── OSAE.SqueezeCenter │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Class1.cs │ ├── OSAE.SqueezeCenter.csproj │ ├── OSAE.SqueezeCenter.sln │ ├── OSAE.SqueezeCenter.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── Squeezebox Server.osapd │ ├── install.sql │ └── squeezeboxServer.cs ├── OSAE.Tellstick │ ├── .vs │ │ └── OSAE.Tellstick │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Install.sql │ ├── OSAE.Tellstick.csproj │ ├── OSAE.Tellstick.sln │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── TelldusNETWrapper.dll │ ├── Tellstick OSA Plugin_2016-08-07.docx │ ├── Tellstick.cs │ ├── Tellstick.osapd │ └── Tellstick.osapp ├── OSAE.Twitter │ ├── .vs │ │ └── OSAE.Twitter │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.Twitter.sln │ ├── OSAE.Twitter.suo │ ├── OSAE.Twitter │ │ ├── Newtonsoft.Json.dll │ │ ├── OSAE.Twitter.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Screenshot.jpg │ │ ├── Twitter.cs │ │ ├── Twitter.osapd │ │ ├── Twitterizer2.dll │ │ ├── install.sql │ │ ├── oAuth.cs │ │ └── oAuthTwitter.cs │ ├── Twitter.osapd │ └── install.sql ├── OSAE.USBUIRT │ ├── .vs │ │ └── OSAE.USBUIRT │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.USBUIRT.sln │ ├── OSAE.USBUIRT.vbproj │ ├── OSAE.USBUIRT.vbproj.user │ ├── Screenshot.jpg │ ├── USBUIRT.osapd │ ├── USBUIRT.vb │ ├── UsbUirtManagedWrapper.dll │ ├── Windows 7 Driver │ │ ├── USBUIRT_Win7_Vista_v20216.zip │ │ ├── amd64 │ │ │ ├── ftd2xx.lib │ │ │ ├── ftd2xx64.dll │ │ │ └── ftdibus.sys │ │ ├── ftdibus.cat │ │ ├── ftdibus.inf │ │ └── i386 │ │ │ ├── ftd2xx.dll │ │ │ ├── ftd2xx.lib │ │ │ ├── ftdibus.sys │ │ │ └── uuirtdrv.dll │ └── install.sql ├── OSAE.W800RF │ ├── .vs │ │ └── OSAE.W800RF │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── OSAE.W800RF.sln │ ├── OSAE.W800RF.vbproj │ ├── OSAE.W800RF.vbproj.user │ ├── Rs232.vb │ ├── Screenshot.jpg │ ├── W800RF.osapd │ ├── W800RF.vb │ ├── install.sql │ └── modW800RF.vb ├── OSAE.WUnderground │ ├── OSAE.WUnderground.csproj │ ├── OSAE.WUnderground.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── WUnderground.cs │ ├── Wunderground.osapd │ └── install.sql ├── OSAE.Weather │ ├── OSAE.Weather.csproj │ ├── OSAE.Weather.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Screenshot.jpg │ ├── Weather.cs │ ├── Weather.osapd │ ├── Web References │ │ └── gov.weather.www │ │ │ ├── Reference.cs │ │ │ ├── Reference.map │ │ │ └── ndfdXMLserver.wsdl │ ├── app.config │ ├── install.sql │ └── noaa.cs ├── OSAE.WebServer │ ├── Install.sql │ ├── OSAE.WebServer.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── Web Server.osapd │ └── WebServer.cs ├── OSAE.XBMC │ ├── .vs │ │ └── OSAE.XBMC │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── OSAE.XBMC.csproj │ ├── OSAE.XBMC.sln │ ├── OSAE.XBMC.suo │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── XBMC.cs │ ├── XBMC.osapd │ ├── XBMCRPC.dll │ ├── install.sql │ └── xbmc-json-async.dll ├── OSAE.Zwave │ ├── .vs │ │ └── OSAE.Zwave │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── Node.cs │ ├── OSAE.Zwave.csproj │ ├── OSAE.Zwave.sln │ ├── OSAE.Zwave.suo │ ├── OZW_Log.txt │ ├── OpenZWaveDotNet.dll │ ├── OpenZWaveDotNet.dll.x64 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── ZWave.osapd │ ├── Zwave.cs │ ├── config │ │ ├── 2GIG │ │ │ ├── ct100.xml │ │ │ ├── ct101.xml │ │ │ └── ct30.xml │ │ ├── BeNext │ │ │ ├── 1poleswitch.xml │ │ │ ├── 2poleswitch.xml │ │ │ ├── AlarmSound.xml │ │ │ ├── BuiltinDimmer.xml │ │ │ ├── DoorSensor.xml │ │ │ ├── EnergySwitch.xml │ │ │ ├── HeatingControl.xml │ │ │ ├── Molite.xml │ │ │ ├── PluginDimmer.xml │ │ │ ├── SceneController.xml │ │ │ └── TagReader.xml │ │ ├── act │ │ │ ├── lfm20.xml │ │ │ ├── zdm230.xml │ │ │ ├── zdw103.xml │ │ │ ├── zdw232.xml │ │ │ ├── zir010.xml │ │ │ ├── zrp110.xml │ │ │ └── zrw103.xml │ │ ├── aeon_labs │ │ │ ├── alms.xml │ │ │ ├── doorwindow.xml │ │ │ ├── hem.xml │ │ │ ├── hemg2.xml │ │ │ ├── keyfob.xml │ │ │ ├── minimote.xml │ │ │ ├── recessed_doorsensor.xml │ │ │ └── ses.xml │ │ ├── aeotec │ │ │ ├── alms.xml │ │ │ ├── doorbell_gen5.xml │ │ │ ├── doorwindow.xml │ │ │ ├── drycontactsensor.xml │ │ │ ├── dsd31.xml │ │ │ ├── hdss_gen5.xml │ │ │ ├── hem.xml │ │ │ ├── hemg2.xml │ │ │ ├── keyfob.xml │ │ │ ├── keyfob2.xml │ │ │ ├── ledbulb.xml │ │ │ ├── minimote.xml │ │ │ ├── msesv2.xml │ │ │ ├── multisensor6.xml │ │ │ ├── multisensor_gen5.xml │ │ │ ├── panicbtn.xml │ │ │ ├── recessed_doorsensor.xml │ │ │ ├── recessed_doorsensor_gen5.xml │ │ │ ├── sd6.xml │ │ │ ├── ses.xml │ │ │ ├── ses2.xml │ │ │ ├── ss6.xml │ │ │ ├── watersensor.xml │ │ │ └── zstickgen5.xml │ │ ├── assa_abloy │ │ │ └── RealLivingCapTouch.xml │ │ ├── cooper │ │ │ ├── RF9505-T.xml │ │ │ └── RF9540-N.xml │ │ ├── danfoss │ │ │ ├── living.xml │ │ │ └── z.xml │ │ ├── device_classes.xml │ │ ├── device_classes.xsd │ │ ├── device_configuration.xsd │ │ ├── dlink │ │ │ └── dch-z110.xml │ │ ├── dragontech │ │ │ └── wd-100.xml │ │ ├── duwi │ │ │ ├── ZWES1000.xml │ │ │ └── ZWESJ300.xml │ │ ├── eurotronic │ │ │ └── eur_stellaz.xml │ │ ├── everspring │ │ │ ├── ad146.xml │ │ │ ├── ad147.xml │ │ │ ├── an145.xml │ │ │ ├── an158.xml │ │ │ ├── an179.xml │ │ │ ├── an180.xml │ │ │ ├── hsp02.xml │ │ │ ├── se812.xml │ │ │ ├── sf812.xml │ │ │ ├── sm103.xml │ │ │ ├── sp103.xml │ │ │ ├── sp814.xml │ │ │ ├── st812.xml │ │ │ ├── st814.xml │ │ │ ├── st815.xml │ │ │ └── tse03.xml │ │ ├── everspringct │ │ │ └── hsm02.xml │ │ ├── evolve │ │ │ ├── lrm-as.xml │ │ │ ├── lsm-15.xml │ │ │ └── ltm-5.xml │ │ ├── express_controls │ │ │ └── ezmotion.xml │ │ ├── fibaro │ │ │ ├── fgbs001.xml │ │ │ ├── fgd211.xml │ │ │ ├── fgd212.xml │ │ │ ├── fgfs101.xml │ │ │ ├── fgk001.xml │ │ │ ├── fgms.xml │ │ │ ├── fgr221.xml │ │ │ ├── fgrgbwm441.xml │ │ │ ├── fgrm222.xml │ │ │ ├── fgs211.xml │ │ │ ├── fgs212.xml │ │ │ ├── fgs221.xml │ │ │ ├── fgs222.xml │ │ │ ├── fgsd002.xml │ │ │ ├── fgss101.xml │ │ │ └── fgwpe.xml │ │ ├── frostdale │ │ │ └── fdn2nxx.xml │ │ ├── ge │ │ │ ├── dimmer.xml │ │ │ ├── dimmer_module.xml │ │ │ └── relay.xml │ │ ├── greenwave │ │ │ ├── powernode1.xml │ │ │ └── powernode6.xml │ │ ├── homeseer │ │ │ ├── ezmotionplus.xml │ │ │ ├── hsm100.xml │ │ │ └── ztroller.xml │ │ ├── honeywell │ │ │ └── th8320zw1000.xml │ │ ├── horstmann │ │ │ └── hrt4zw.xml │ │ ├── intermatic │ │ │ └── ca8900.xml │ │ ├── iris │ │ │ └── rangeextender.xml │ │ ├── leviton │ │ │ ├── rzi10.xml │ │ │ ├── vrcpg.xml │ │ │ ├── vrf01.xml │ │ │ ├── vri06.xml │ │ │ └── vri10.xml │ │ ├── linear │ │ │ ├── PD300Z-2.xml │ │ │ └── WD500Z-1.xml │ │ ├── manufacturer_specific.xml │ │ ├── manufacturer_specific.xsd │ │ ├── mcohome │ │ │ ├── mhs311.xml │ │ │ ├── mhs312.xml │ │ │ ├── mhs314.xml │ │ │ ├── mhs411.xml │ │ │ ├── mhs412.xml │ │ │ └── mhs513.xml │ │ ├── merten │ │ │ └── 50x5xx.xml │ │ ├── nodon │ │ │ ├── asp3100SmartPlug.xml │ │ │ ├── crc3100OctanRemote.xml │ │ │ └── cws3101wallswitch.xml │ │ ├── northq │ │ │ └── nq92021.xml │ │ ├── options.xml │ │ ├── options.xsd │ │ ├── philio │ │ │ ├── pan04.xml │ │ │ ├── psm02.xml │ │ │ ├── pst02-1c.xml │ │ │ ├── pst02-b.xml │ │ │ └── pst02.xml │ │ ├── polycontrol │ │ │ ├── doorlock.xml │ │ │ ├── keypad.xml │ │ │ └── polylock.xml │ │ ├── popp │ │ │ ├── 123580.xml │ │ │ ├── 123601.xml │ │ │ └── 123658.xml │ │ ├── qees │ │ │ └── reto-plugin-switch.xml │ │ ├── qubino │ │ │ ├── ZMNHAA2.xml │ │ │ ├── ZMNHAD1.xml │ │ │ ├── ZMNHBA2.xml │ │ │ ├── ZMNHBD2.xml │ │ │ ├── ZMNHCA2.xml │ │ │ ├── ZMNHDA2.xml │ │ │ ├── ZMNHIA2.xml │ │ │ └── ZMNHJA2.xml │ │ ├── rcs │ │ │ ├── em52-zw.xml │ │ │ ├── pm12-zw.xml │ │ │ ├── therm0005.xml │ │ │ ├── therm0007.xml │ │ │ └── therm0009.xml │ │ ├── remotec │ │ │ ├── zfm-80.xml │ │ │ ├── zurc.xml │ │ │ └── zxt-120.xml │ │ ├── schlage │ │ │ └── BE469NXCEN.xml │ │ ├── schlagelink │ │ │ ├── itemp.xml │ │ │ └── minikeypad.xml │ │ ├── swiid │ │ │ ├── swiidinter.xml │ │ │ └── swiidplug.xml │ │ ├── thermofloor │ │ │ └── multireg.xml │ │ ├── trane │ │ │ ├── TZEMT400AB32MAA.xml │ │ │ └── TZEMT400BB32MAA.xml │ │ ├── vision │ │ │ ├── zd2102.xml │ │ │ ├── zm1601eu.xml │ │ │ ├── zm1602eu.xml │ │ │ ├── zp3102.xml │ │ │ └── zs5101eu.xml │ │ ├── vitrum │ │ │ └── vitrumBS.xml │ │ ├── waynedalton │ │ │ └── WDTC-20.xml │ │ ├── wenzhou │ │ │ ├── sm103.xml │ │ │ ├── tsp01.xml │ │ │ ├── tz65d.xml │ │ │ ├── tz66d.xml │ │ │ ├── tz67.xml │ │ │ └── tz88.xml │ │ ├── widom │ │ │ ├── UBS104.xml │ │ │ └── UME304C_S.xml │ │ ├── zipato │ │ │ ├── MiniKeypad.xml │ │ │ └── RGBBulb.xml │ │ ├── zwave.me │ │ │ ├── ZME_05431.xml │ │ │ ├── ZME_06433.xml │ │ │ ├── ZME_06436.xml │ │ │ ├── ZME_064435.xml │ │ │ ├── ZME_WALLC-S.xml │ │ │ ├── ZME_WCD2.xml │ │ │ ├── iTemp.xml │ │ │ └── kfob.xml │ │ ├── zwcfg.xsd │ │ └── zwscene.xsd │ ├── install.sql │ └── options.xml ├── SysLog │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── SysLog.cs │ ├── SysLog.csproj │ ├── SysLog.osapd │ └── install.sql └── Visual Studio Template │ ├── OSA Plugin Template.zip │ └── README.txt ├── README.md ├── Services ├── ClientService │ ├── ClientService.cs │ ├── ClientService.csproj │ ├── ClientServiceInstaller.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── DataSources │ │ │ ├── OSAE.OSAEObject.datasource │ │ │ └── System.Data.DataSet.datasource │ └── app.config └── OSA.Service │ ├── OSAE.Service.csproj │ ├── OSAEService.HelperCode.cs │ ├── OSAEService.Networking.Designer.cs │ ├── OSAEService.Networking.cs │ ├── OSAEService.PluginsCode.cs │ ├── OSAEService.cs │ ├── OSAEService.exe.config │ ├── OSAEServiceInstaller.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── app.config ├── UI ├── Manager │ ├── App.xaml │ ├── App.xaml.cs │ ├── InstallPlugin.xaml │ ├── InstallPlugin.xaml.cs │ ├── LogWindow.xaml │ ├── LogWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Manager.csproj │ ├── Plugin.cs │ ├── PluginInstallerHelper.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── DataSources │ │ │ ├── OSAE.OSAEObject.datasource │ │ │ └── System.Data.DataSet.datasource │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── OSA.png │ │ ├── icon.ico │ │ ├── icon_3_32x32x32.png │ │ ├── logs.jpg │ │ ├── screen.jpg │ │ ├── settings.png │ │ └── upgrade.png │ ├── Service References │ │ └── WCFService │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── WCFService.wsdl │ │ │ ├── configuration.svcinfo │ │ │ ├── configuration91.svcinfo │ │ │ ├── item.disco │ │ │ ├── item.xsd │ │ │ ├── item1.xsd │ │ │ ├── item2.xsd │ │ │ └── item3.xsd │ ├── SingleInstance.cs │ ├── app.config │ └── app.manifest ├── OSAE.UI.Controls │ ├── AddBrowserControl.xaml │ ├── AddBrowserControl.xaml.cs │ ├── AddControlClickImage.xaml │ ├── AddControlClickImage.xaml.cs │ ├── AddControlNavigationImage.xaml │ ├── AddControlNavigationImage.xaml.cs │ ├── AddControlPropertyLabel.xaml │ ├── AddControlPropertyLabel.xaml.cs │ ├── AddControlScreen.xaml │ ├── AddControlScreen.xaml.cs │ ├── AddControlStateImage.xaml │ ├── AddControlStateImage.xaml.cs │ ├── AddControlTimerLabel.xaml │ ├── AddControlTimerLabel.xaml.cs │ ├── AddControlUserControl.xaml │ ├── AddControlUserControl.xaml.cs │ ├── AddNewCameraViewer.xaml │ ├── AddNewCameraViewer.xaml.cs │ ├── AddNewObject.xaml │ ├── AddNewObject.xaml.cs │ ├── BrowserFrame.xaml │ ├── BrowserFrame.xaml.cs │ ├── ChangeScreen.xaml │ ├── ChangeScreen.xaml.cs │ ├── ClickImage.xaml │ ├── ClickImage.xaml.cs │ ├── ImagePicker.Designer.cs │ ├── ImagePicker.cs │ ├── Logs.xaml │ ├── Logs.xaml.cs │ ├── MjpegProcessor.dll │ ├── NavigationImage.xaml │ ├── NavigationImage.xaml.cs │ ├── OSAE.UI.Controls.csproj │ ├── OSAE.UI.Controls.dll │ ├── ObjectList.xaml │ ├── ObjectList.xaml.cs │ ├── ParamInput.xaml │ ├── ParamInput.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyLabel.xaml │ ├── PropertyLabel.xaml.cs │ ├── ScreenObjectList.xaml │ ├── ScreenObjectList.xaml.cs │ ├── StateImage.xaml │ ├── StateImage.xaml.cs │ ├── StaticLabel.xaml │ ├── StaticLabel.xaml.cs │ ├── TimerLabel.xaml │ ├── TimerLabel.xaml.cs │ ├── UserSelector.xaml │ ├── UserSelector.xaml.cs │ ├── VideoStreamViewer.xaml │ ├── VideoStreamViewer.xaml.cs │ ├── Weather.xaml │ ├── Weather.xaml.cs │ ├── ctrlSelectImage.xaml │ └── ctrlSelectImage.xaml.cs ├── PluginDescriptionEditor │ ├── EditorForm.Designer.cs │ ├── EditorForm.cs │ ├── EditorForm.resx │ ├── PluginDescription.cs │ ├── PluginDescriptionEditor.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── 64 bit.png │ │ ├── AddNew.Image.png │ │ └── Delete.Image.png │ ├── app.config │ └── pluginIcon.ico ├── Screens │ ├── .vs │ │ └── Screens │ │ │ └── v15 │ │ │ └── sqlite3 │ │ │ └── storage.ide │ ├── AddControl.xaml │ ├── AddControl.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── ChangeScreen.xaml │ ├── ChangeScreen.xaml.cs │ ├── DragAdorner.cs │ ├── InstallUserControl.xaml │ ├── InstallUserControl.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── OSA.png │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Screens.csproj │ ├── Screens.sln │ ├── UserControlInstallerHelper.cs │ ├── app.config │ ├── icon.ico │ └── icon.png ├── UserControlDescriptionEditor │ ├── App.config │ ├── EditorForm.Designer.cs │ ├── EditorForm.cs │ ├── EditorForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── 64 bit.png │ │ ├── AddNew.Image.png │ │ └── Delete.Image.png │ ├── UserControlDescriptionEditor.csproj │ └── pluginIcon.ico ├── Voice │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── icon.ico │ │ └── icon_3_32x32x32.png │ ├── Voice.csproj │ ├── Voice.sln │ └── app.config └── Web │ ├── App_GlobalResources │ ├── Resources.de.resx │ ├── Resources.fr.resx │ └── Resources.resx │ ├── Bin │ └── NetworkCommsDotNetComplete.dll │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Global.asax │ ├── ImageHandler.ashx │ ├── Images │ ├── OSA.png │ ├── cog.png │ ├── cog_red.png │ ├── delete.jpg │ ├── grd_alt.png │ ├── grd_head.png │ ├── icon.ico │ ├── loading.gif │ ├── refresh.png │ └── upgrade.png │ ├── MasterPage.master │ ├── MasterPage.master.cs │ ├── Web.config │ ├── analytics.aspx │ ├── analytics.aspx.cs │ ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap-collapse.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-tab.js │ │ ├── bootstrap-transition.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery-1.7.2.min.js │ ├── config.aspx │ ├── config.aspx.cs │ ├── controls │ ├── VideoStreamViewer.ascx │ ├── VideoStreamViewer.ascx.cs │ ├── ctrlBrowser.ascx │ ├── ctrlBrowser.ascx.cs │ ├── ctrlClickImage.ascx │ ├── ctrlClickImage.ascx.cs │ ├── ctrlEmbedded.ascx │ ├── ctrlEmbedded.ascx.cs │ ├── ctrlNavigationImage.ascx │ ├── ctrlNavigationImage.ascx.cs │ ├── ctrlPropertyLabel.ascx │ ├── ctrlPropertyLabel.ascx.cs │ ├── ctrlStateImage.ascx │ ├── ctrlStateImage.ascx.cs │ ├── ctrlTimerLabel.ascx │ ├── ctrlTimerLabel.ascx.cs │ ├── ctrlUserControl.ascx │ ├── ctrlUserControl.ascx.cs │ └── usercontrols │ │ ├── StateButton │ │ ├── ctrlUserControl.ascx │ │ └── ctrlUserControl.ascx.cs │ │ └── WeatherControl │ │ ├── ctrlUserControl.ascx │ │ └── ctrlUserControl.ascx.cs │ ├── css │ ├── jquery-ui.css │ └── style.css │ ├── debuglog.aspx │ ├── debuglog.aspx.cs │ ├── error.aspx │ ├── error.aspx.cs │ ├── eventlogs.aspx │ ├── eventlogs.aspx.cs │ ├── firstrun.aspx │ ├── firstrun.aspx.cs │ ├── images.aspx │ ├── images.aspx.cs │ ├── importexport.aspx │ ├── importexport.aspx.cs │ ├── js │ ├── ace.js │ ├── jquery-1.9.1.js │ ├── jquery-ui-1.10.2.custom.min.js │ ├── jquery-ui-sliderAccess.js │ ├── jquery-ui-timepicker-addon.js │ ├── jquery.flot.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.time.js │ ├── mode-javascript.js │ ├── mode-powershell.js │ ├── theme-monokai.js │ ├── theme-tomorrow.js │ └── worker-javascript.js │ ├── logs.aspx │ ├── logs.aspx.cs │ ├── methodlog.aspx │ ├── methodlog.aspx.cs │ ├── mobile │ ├── MobileMasterPage.master │ ├── MobileMasterPage.master.cs │ ├── images │ │ └── osa_logo.png │ ├── index.aspx │ ├── index.aspx.cs │ └── jquery │ │ ├── images │ │ ├── ajax-loader.gif │ │ ├── ajax-loader.png │ │ ├── icons-18-black.png │ │ ├── icons-18-white.png │ │ ├── icons-36-black.png │ │ └── icons-36-white.png │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.mobile-1.3.1.min.css │ │ └── jquery.mobile-1.3.1.min.js │ ├── morePlugins.aspx │ ├── morePlugins.aspx.cs │ ├── objects.aspx │ ├── objects.aspx.cs │ ├── objtypes.aspx │ ├── objtypes.aspx.cs │ ├── patterns.aspx │ ├── patterns.aspx.cs │ ├── permissionError.aspx │ ├── permissionError.aspx.cs │ ├── plugins.aspx │ ├── plugins.aspx.cs │ ├── readers.aspx │ ├── readers.aspx.cs │ ├── schedules.aspx │ ├── schedules.aspx.cs │ ├── screens.aspx │ ├── screens.aspx.cs │ ├── scripts.aspx │ ├── scripts.aspx.cs │ ├── valuedisplay.aspx │ ├── valuedisplay.aspx.cs │ ├── welcome.aspx │ └── welcome.aspx.cs ├── UpgradeLog.htm ├── UpgradeLog2.htm ├── UpgradeLog3.htm ├── UserControls ├── StateButton │ ├── Plugin │ │ ├── MYStateButton.dll │ │ ├── MyStateButton.osauc │ │ ├── MyStateButton.osaud │ │ ├── Screenshot.jpg │ │ ├── ctrlUserControl.ascx │ │ ├── ctrlUserControl.ascx.cs │ │ └── install.sql │ └── StateButton │ │ ├── AddNewControl.xaml │ │ ├── AddNewControl.xaml.cs │ │ ├── CustomUserControl.xaml │ │ ├── CustomUserControl.xaml.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── StateButton.csproj │ │ ├── StateButton.sln │ │ └── UserControlInterface.cs ├── Template │ ├── AddNewControl.xaml │ ├── AddNewControl.xaml.cs │ ├── CustomUserControl.xaml │ ├── CustomUserControl.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Screenshot.jpg │ ├── UserControlInterface.cs │ ├── UserControlTemplate.csproj │ ├── UserControlTemplate.sln │ ├── UserControlTemplate.zip │ └── install.sql └── Weather Control │ ├── Plugin │ ├── Screenshot.jpg │ ├── Weather.osauc │ ├── Weather.osaud │ ├── Weather_Control.dll │ ├── ctrlUserControl.ascx │ ├── ctrlUserControl.ascx.cs │ └── install.sql │ ├── Weather │ ├── AddNewControl.xaml │ ├── AddNewControl.xaml.cs │ ├── CustomUserControl.xaml │ ├── CustomUserControl.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UserControlInterface.cs │ ├── Weather_Control.csproj │ └── install.sql │ └── Weather_Control.sln └── packages ├── Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0 └── Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0.nupkg └── System.Management.Automation.dll.10.0.10586.0 └── System.Management.Automation.dll.10.0.10586.0.nupkg /.vs/Open Source Automation/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/.vs/Open Source Automation/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Assemblies/CommStudio.Express.3.5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/CommStudio.Express.3.5.dll -------------------------------------------------------------------------------- /Assemblies/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Assemblies/InTheHand.Net.Personal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/InTheHand.Net.Personal.dll -------------------------------------------------------------------------------- /Assemblies/MjpegProcessor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/MjpegProcessor.dll -------------------------------------------------------------------------------- /Assemblies/MySql.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/MySql.Data.dll -------------------------------------------------------------------------------- /Assemblies/NationalWeatherServiceLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/NationalWeatherServiceLibrary.dll -------------------------------------------------------------------------------- /Assemblies/NetworkCommsDotNetComplete.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/NetworkCommsDotNetComplete.dll -------------------------------------------------------------------------------- /Assemblies/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assemblies/OSAE.UI.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/OSAE.UI.Controls.dll -------------------------------------------------------------------------------- /Assemblies/SimpleTextMessageEncoderLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/SimpleTextMessageEncoderLibrary.dll -------------------------------------------------------------------------------- /Assemblies/WpfAnimatedGif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/WpfAnimatedGif.dll -------------------------------------------------------------------------------- /Assemblies/agsXMPP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/agsXMPP.dll -------------------------------------------------------------------------------- /Assemblies/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Assemblies/log4net.dll -------------------------------------------------------------------------------- /DB/cleanup.sql: -------------------------------------------------------------------------------- 1 | CALL osae_sp_object_property_set('SYSTEM','Debug','FALSE','',''); 2 | DELETE FROM osae_debug_log; 3 | DELETE FROM osae_event_log; 4 | DELETE FROM osae_method_log; 5 | DELETE FROM osae_object_property_history; 6 | DELETE FROM osae_object_state_history; 7 | DELETE FROM osae_object_state_change_history; 8 | #DELETE FROM osae_images; 9 | DELETE FROM osae_object 10 | WHERE object_type_id IN (25, 50, 51, 54, 65, 95, 86, 35, 58, 87,34,24, 61, 81, 74, 77); 11 | 12 | 13 | SELECT * FROM osae_v_object; 14 | -------------------------------------------------------------------------------- /OSA Test Sheet.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/OSA Test Sheet.ods -------------------------------------------------------------------------------- /OSAE.API/Enums/DaysOfWeek.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE.Enums 2 | { 3 | /// 4 | /// Days of week... 5 | /// 6 | public enum DaysOfWeek 7 | { 8 | Sunday = 1, 9 | Monday = 2, 10 | Tuesday = 3, 11 | Wednesday = 4, 12 | Thursday = 5, 13 | Friday = 6, 14 | Saturday = 7 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /OSAE.API/General/DBConnectionStatus.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | /// 4 | /// Namespace for OSAE Database and Logging Management 5 | /// 6 | namespace OSAE.General 7 | { 8 | /// 9 | /// Class used to track current connection status to the database 10 | /// 11 | public class DBConnectionStatus 12 | { 13 | public readonly bool Success; 14 | public readonly Exception CaughtException; 15 | 16 | public DBConnectionStatus(bool success, Exception exception) 17 | { 18 | this.Success = success; 19 | this.CaughtException = exception; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /OSAE.API/OSAEScreenControl/OSAEScreenControl.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE 2 | { 3 | using System; 4 | 5 | public class OSAEScreenControl 6 | { 7 | public string ControlName { get; set; } 8 | public string ControlType { get; set; } 9 | public string ObjectName { get; set; } 10 | public string ObjectState { get; set; } 11 | public DateTime LastUpdated { get; set; } 12 | public DateTime PropertyLastUpdated { get; set; } 13 | public string TimeInState { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /OSAE.API/OSAEScript/OSAEScriptProcessor.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE 2 | { 3 | public class OSAEScriptProcessor 4 | { 5 | /// 6 | /// the ID of the script processor entry 7 | /// 8 | public uint ID { get; set; } 9 | 10 | /// 11 | /// The name used in visual areas 12 | /// 13 | public string Name { get; set; } 14 | 15 | /// 16 | /// the plugin that will process the script 17 | /// 18 | public string PluginName { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /OSAE.API/OSAEUserControl/GlobalUserControls.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE 2 | { 3 | 4 | using System; 5 | 6 | /// 7 | /// Creates a static instance of Custom User Controls and other required global program stuff 8 | /// 9 | public class GlobalUserControls 10 | { 11 | public GlobalUserControls() { } //Constructor 12 | 13 | public static OSAE.UserControlServices OSAEUserControls = new UserControlServices(); 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /OSAE.API/OSAEUserControl/OSAEMainUserCtrl.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE 2 | { 3 | 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Controls; 9 | 10 | /// 11 | /// Class holds an instance of a Static CustomUserControl 12 | /// 13 | [Serializable] 14 | public class OSAEMainUserCtrl : UserControl 15 | { 16 | public string ControlName { get; set; } 17 | public string ControlType { get; set; } 18 | public string Screen { get; set; } 19 | public int X { get; set; } 20 | public int Y { get; set; } 21 | public int ZOrder { get; set; } 22 | public System.Windows.Point Location; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /OSAE.API/keyfile.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/OSAE.API/keyfile.snk -------------------------------------------------------------------------------- /Obsolete/GUI/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | GUI 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /Obsolete/GUI/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Obsolete/GUI/frmAddObject.vb: -------------------------------------------------------------------------------- 1 | Imports System.Windows.Forms.Integration 2 | Imports OSAE.UI.Controls 3 | 4 | Public Class frmAddObject 5 | 6 | Private host As ElementHost 7 | Private addNewObjectControl As AddNewObject 8 | 9 | Private Sub frmObject_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 10 | host = New ElementHost 11 | host.Dock = DockStyle.Fill 12 | 13 | addNewObjectControl = New AddNewObject 14 | 15 | host.Child = addNewObjectControl 16 | Me.Controls.Add(host) 17 | End Sub 18 | End Class -------------------------------------------------------------------------------- /Obsolete/GUI/frmFilters.vb: -------------------------------------------------------------------------------- 1 | Public Class frmFilters 2 | 3 | End Class -------------------------------------------------------------------------------- /Obsolete/GUI/frmLogs.vb: -------------------------------------------------------------------------------- 1 |  2 | Imports System.Windows.Forms.Integration 3 | Imports OSAE.UI.Controls 4 | 5 | Public Class frmLogs 6 | Private host As ElementHost 7 | Private logsControl As Logs 8 | 9 | Private Sub logs_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 10 | 11 | host = New ElementHost 12 | host.Dock = DockStyle.Fill 13 | 14 | logsControl = New Logs 15 | 16 | host.Child = logsControl 17 | Me.Controls.Add(host) 18 | 19 | End Sub 20 | End Class -------------------------------------------------------------------------------- /Obsolete/GUI/frmSQLBox.vb: -------------------------------------------------------------------------------- 1 | Public Class frmSQLBox 2 | Private Sub butClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles butClose.Click 3 | Me.Close() 4 | End Sub 5 | End Class -------------------------------------------------------------------------------- /Obsolete/GUI/mainIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Obsolete/GUI/mainIcon.ico -------------------------------------------------------------------------------- /Obsolete/GUI/ucSlider1.vb: -------------------------------------------------------------------------------- 1 | Public Class ucSlider1 2 | 3 | End Class 4 | -------------------------------------------------------------------------------- /Obsolete/LogViewer/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Obsolete/LogViewer/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace LogViewer 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Obsolete/LogViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Obsolete/LogViewer/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Obsolete/LogViewer/Resources/icon.ico -------------------------------------------------------------------------------- /Obsolete/LogViewer/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Obsolete/LogViewer/icon.ico -------------------------------------------------------------------------------- /Plugins/EventGhost/.vs/EventGhost/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/EventGhost/.vs/EventGhost/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/EventGhost/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/EventGhost/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Android/.vs/OSAE.Android/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Android/.vs/OSAE.Android/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Android/Android.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Android 4 | f88b71e1-4047-4748-8ccb-e208f522c03c 5 | 0.4.9 6 | alpha 7 | Android Extension for OSA 8 | Brian Bridger 9 | Android 10 | OSAE.Android.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Android 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Android/OSAE.Android/Android.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Android 4 | f88b71e1-4047-4748-8ccb-e208f522c03c 5 | 0.4.8 6 | alpha 7 | Android Extension for OSA 8 | Brian Bridger 9 | Android 10 | OSAE.Android.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Android 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Android/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Android/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.AprilaireThermostat/.vs/OSAE.AprilaireThermostat/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.AprilaireThermostat/.vs/OSAE.AprilaireThermostat/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.AprilaireThermostat/AprilaireThermostat.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | AprilaireThermostat 4 | 9f0f3f5b-2056-4123-a2c7-c22050279000 5 | 0.4.9 6 | alpha 7 | Aprilaire Thermostat 8 | Automate 9 | AprilaireThermostat 10 | OSAE.AprilaireThermostat.dll 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.AprilaireThermostat/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.AprilaireThermostat/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.AprilaireThermostat/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.AprilaireThermostat/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.AprilaireThermostat/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Bluetooth/.vs/OSAE.Bluetooth/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Bluetooth/.vs/OSAE.Bluetooth/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Bluetooth/OSAE.Bluetooth.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Bluetooth/OSAE.Bluetooth.suo -------------------------------------------------------------------------------- /Plugins/OSAE.Bluetooth/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Bluetooth/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/.vs/CM11A/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM11A/.vs/CM11A/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/CM11A.ocx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM11A/CM11A.ocx -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/CM11A.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/Interop.cm11a.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM11A/Interop.cm11a.dll -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM11A/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM11A/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/.vs/OSAE.CM15A/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM15A/.vs/OSAE.CM15A/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/Interop.ActiveHomeScriptLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM15A/Interop.ActiveHomeScriptLib.dll -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/OSAE.CM15A.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | 7 | 8 | 9 | 10 | 11 | en-US 12 | false 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM15A/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/ahscript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM15A/ahscript.dll -------------------------------------------------------------------------------- /Plugins/OSAE.CM15A/ahsdk_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM15A/ahsdk_install.exe -------------------------------------------------------------------------------- /Plugins/OSAE.CM17A/.vs/OSAE.CM17A/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM17A/.vs/OSAE.CM17A/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.CM17A/CM17A.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | CM17A 4 | e2a94f62-14ff-4458-bc30-e7af479d5b77 5 | 0.4.9 6 | beta 7 | X10 CM17A FireCracker 8 | Automate 9 | CM17A 10 | OSAE.CM17A.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=CM17A 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM17A/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM17A/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM17A/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.CM17A/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.CM17A/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.COSMUpdater/.vs/OSAE.COSMUpdater/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.COSMUpdater/.vs/OSAE.COSMUpdater/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.COSMUpdater/COSMUpdater.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | COSMUpdater 4 | 5b636360-2246-44f6-8bdb-67af917574c3 5 | 0.4.9 6 | alpha 7 | Write Data to COSM 8 | Stuart MacKay, Matthew Stebbings 9 | COSMUpdater 10 | OSAE.COSMUpdater.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=COSMUpdater 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.COSMUpdater/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.COSMUpdater/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Computer Power/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.1 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Computer Power/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.Computer Power/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Computer Power/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Computer Power/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.ControlMaster/ControlMaster.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Control Master 4 | a8a99518-0605-4c0e-8f31-6653237afc75 5 | 0.2.2 6 | beta 7 | 8 | Plugin for the Control Master distributed I/O system 9 | mattw 10 | Control Master 11 | bin\x86\Release\OSAE.ControlMaster.dll 12 | 13 | 14 | mas.dll 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Plugins/OSAE.ControlMaster/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.ControlMaster/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.ControlMaster/mas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.ControlMaster/mas.dll -------------------------------------------------------------------------------- /Plugins/OSAE.DSC Alarm/.vs/OSAE.DSC Alarm/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.DSC Alarm/.vs/OSAE.DSC Alarm/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.DSC Alarm/DSC Alarm.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | DSC Alarm 4 | f2b47eb9-4ed8-4b9f-a739-ee171e46dee5 5 | 0.4.9 6 | alpha 7 | DSC Alarm System 8 | Automate 9 | DSC Alarm 10 | OSAE.DSC Alarm.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=DSC_Alarm 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.DSC Alarm/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.DSC Alarm/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.DSC Alarm/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.DSC Alarm/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.DSC Alarm/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Email/Email.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email 4 | ca46d357-2e42-4a11-b699-fc08dc71f3f0 5 | 0.4.9 6 | beta 7 | 8 | Brian Woodworth 9 | Email 10 | OSAE.Email.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Email 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Email/OSAE.Email.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Email/OSAE.Email.suo -------------------------------------------------------------------------------- /Plugins/OSAE.Email/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Email/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Global Cache/.vs/OSAE.Global Cache/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Global Cache/.vs/OSAE.Global Cache/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Global Cache/Global Cache.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Global Cache 4 | 79bf4099-6e19-4ad0-b559-cbd15eca61c8 5 | 0.4.9 6 | alpha 7 | Global Cache 8 | Automate 9 | Global Cache 10 | OSAE.Global Cache.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Global_Cache 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Global Cache/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Global Cache/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.Global Cache/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Global Cache/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Global Cache/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.IP Camera/OSAE.IP Camera/AForge.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.IP Camera/OSAE.IP Camera/AForge.dll -------------------------------------------------------------------------------- /Plugins/OSAE.IPCam/.vs/IPCam/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.IPCam/.vs/IPCam/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.IPCam/IPCam.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | IPCam 4 | b3328af6-021f-4d98-a0cb-398d2ac71206 5 | 0.2.3 6 | beta 7 | Upgrades 8 | IP Camera Viewer with PTZ control and snapshot 9 | Kirk Herron 10 | IPCam 11 | OSAE.IPCam.dll 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Plugins/OSAE.IPCam/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.IPCam/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/.vs/Insteon/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Insteon/.vs/Insteon/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/Insteon.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Insteon 4 | b3d3163d-dde5-4be8-bd3d-82876becbfa6 5 | 0.4.9 6 | beta 7 | Insteon PLM Plugin 8 | Vaughn Rupp 9 | Insteon 10 | OSAE.Insteon.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Insteon 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/Insteon.osapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Insteon/Insteon.osapp -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/Insteon.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Insteon/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Insteon/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.J-Works/.vs/OSAE.JWorks/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.J-Works/.vs/OSAE.JWorks/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.J-Works/Jsb34x.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.J-Works/Jsb34x.dll -------------------------------------------------------------------------------- /Plugins/OSAE.J-Works/Jsb383.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.J-Works/Jsb383.dll -------------------------------------------------------------------------------- /Plugins/OSAE.J-Works/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.J-Works/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Jabber/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Jabber/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.KillAWatt/.vs/OSAE.KillAWatt/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.KillAWatt/.vs/OSAE.KillAWatt/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.KillAWatt/OSAE.KillAWatt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.KillAWatt/OSAE.KillAWatt.suo -------------------------------------------------------------------------------- /Plugins/OSAE.KillAWatt/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.KillAWatt/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.LightswitchServer/.vs/OSAE.LightswitchServer/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.LightswitchServer/.vs/OSAE.LightswitchServer/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.LightswitchServer/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.LightswitchServer/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.LightswitchServer/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.LightswitchServer/OSAE.LightswitchServer.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.LightswitchServer/OSAE.LightswitchServer.suo -------------------------------------------------------------------------------- /Plugins/OSAE.MediaCenter/.vs/OSAE.MediaCenter/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.MediaCenter/.vs/OSAE.MediaCenter/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.MeterReader/.vs/OSAE.Meter Reader/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.MeterReader/.vs/OSAE.Meter Reader/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.MeterReader/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.MeterReader/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.MeterReader/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.MeterReader/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.MeterReader/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Nest/.vs/OSAE.Nest/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Nest/.vs/OSAE.Nest/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Nest/OSAE.Nest/FirebaseSharp.Portable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Nest/OSAE.Nest/FirebaseSharp.Portable.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Nest/OSAE.Nest/Nest.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Nest 4 | e228b1a3-aea3-4230-a35b-1ec0428de96a 5 | 0.4.9 6 | alpha 7 | Plugin for communicating with Nest thermostats and smoke alarms 8 | Brian Bridger 9 | Nest 10 | OSAE.Nest.dll 11 | 12 | 13 | FirebaseSharp.Portable.dll 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Plugins/OSAE.Nest/OSAE.Nest/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Nest/OSAE.Nest/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Nest/OSAE.Nest/OSAE.Nest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Nest/OSAE.Nest/OSAE.Nest.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Nest/OSAE.Nest/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Nest/OSAE.Nest/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Nest/OSAE.Nest/Screenshot_new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Nest/OSAE.Nest/Screenshot_new.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.NetworkMonitor/OSAE.NetworkMonitor.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.NetworkMonitor/OSAE.NetworkMonitor.suo -------------------------------------------------------------------------------- /Plugins/OSAE.NetworkMonitor/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.NetworkMonitor/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.OneWire/.vs/OSAE.OneWire/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.OneWire/.vs/OSAE.OneWire/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.OneWire/OSAE.OneWire.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.OneWire/OSAE.OneWire.suo -------------------------------------------------------------------------------- /Plugins/OSAE.OneWire/OW.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.OneWire/OW.Net.dll -------------------------------------------------------------------------------- /Plugins/OSAE.OneWire/OneWireAPI.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.OneWire/OneWireAPI.NET.dll -------------------------------------------------------------------------------- /Plugins/OSAE.OneWire/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.OneWire/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.OneWire/vjslib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.OneWire/vjslib.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/.vs/OSAE.Onkyo/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Onkyo/.vs/OSAE.Onkyo/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/OSAE.Onkyo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Onkyo/OSAE.Onkyo.suo -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/OSAE.Onkyo/Exception.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.IO; 6 | 7 | namespace OSAE.Onkyo 8 | { 9 | 10 | public class ParseVarsException : Exception 11 | { 12 | public ParseVarsException() : base("IP Address is Null or cannot be parsed") { } 13 | } 14 | public class InvalidOnkyoStringException : Exception 15 | { 16 | public InvalidOnkyoStringException() : base("Invalid Onkyo server reply string") { } 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/OSAE.Onkyo/Onkyo.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Onkyo 4 | 5c2faa55-8205-4cee-8afd-67d898513fdb 5 | 0.3.0 6 | alpha 7 | Control your Onkyo A/V receiver 8 | Brian 9 | Onkyo 10 | OSAE.Onkyo.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Onkyo 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/OSAE.Onkyo/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Onkyo/OSAE.Onkyo/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/OSAE.Onkyo/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Onkyo/OSAE.Onkyo/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/Onkyo.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Onkyo 4 | 5c2faa55-8205-4cee-8afd-67d898513fdb 5 | 0.4.9 6 | alpha 7 | Control your Onkyo A/V receiver 8 | Brian 9 | Onkyo 10 | OSAE.Onkyo.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Onkyo 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Onkyo/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Onkyo/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/.vs/OSAE.Phidget-IK/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-IK/.vs/OSAE.Phidget-IK/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/OSAE.Phidget-IK.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/Phidget21.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-IK/Phidget21.NET.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/Phidget21.NET1.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-IK/Phidget21.NET1.1.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/Phidget21COM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-IK/Phidget21COM.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-IK/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-IK/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-RFID/.vs/OSAE.Phidget-RFID/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-RFID/.vs/OSAE.Phidget-RFID/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-RFID/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-RFID/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-RFID/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-RFID/OSAE.Phidget-RFID.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-RFID/Phidget21.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-RFID/Phidget21.NET.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-RFID/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-RFID/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-Servo/.vs/Phidget-Servo/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-Servo/.vs/Phidget-Servo/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-Servo/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-Servo/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-Servo/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-Servo/Phidget-Servo.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-Servo/Phidget21.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-Servo/Phidget21.NET.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Phidget-Servo/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Phidget-Servo/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/CmdLets/Pachube/Account.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Net; 3 | 4 | namespace PachubeDataAccess 5 | { 6 | public class Account 7 | { 8 | public string ApiKey; 9 | public string BaseUrl = "http://api.pachube.com/v2/"; 10 | public WebProxy HttpProxy = null; 11 | 12 | public Account(string key) 13 | { 14 | ApiKey = key; 15 | } 16 | 17 | public string EventsUrl 18 | { 19 | get 20 | { 21 | return BaseUrl + "feeds/"; 22 | } 23 | private set 24 | { } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/CmdLets/Pachube/DoubleFeedItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PachubeDataAccess 4 | { 5 | public class DoubleFeedItem : IFeedItem 6 | { 7 | public string Id {get;set;} 8 | public double Value { get; set; } 9 | 10 | public DoubleFeedItem(string id, double val) 11 | { 12 | Id = id; 13 | Value = val; 14 | } 15 | 16 | public string ToJson(int FeedId) 17 | { 18 | return "{\r\n\t\"version\": \"1.0.0\",\r\n\t\"datastreams\":[\r\n\t\t{\r\n\t\t\t\"id\":\"" + this.Id + "\",\r\n\t\t\t\"current_value\": \"" + this.Value.ToString("F") + "\"\r\n\t\t}]\r\n}"; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/CmdLets/Pachube/IFeedItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PachubeDataAccess 4 | { 5 | public interface IFeedItem 6 | { 7 | string ToJson(int FeedId); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/CmdLets/Pachube/StringFeedItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PachubeDataAccess 4 | { 5 | public class StringFeedItem : IFeedItem 6 | { 7 | public string Id {get;set;} 8 | public string Value { get; set; } 9 | 10 | public StringFeedItem(string id, string val) 11 | { 12 | Id = id; 13 | Value = val; 14 | } 15 | 16 | public string ToJson(int FeedId) 17 | { 18 | return "{\r\n\t\"version\": \"1.0.0\",\r\n\t\"datastreams\":[\r\n\t\t{\r\n\t\t\t\"id\":\"" + this.Id + "\",\r\n\t\t\t\"current_value\": \"" + this.Value +"\"\r\n\t\t}]\r\n}"; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/CmdLets/Pachube/get-osapachube.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE.PowerShellTools 2 | { 3 | using PachubeDataAccess; 4 | using System.Management.Automation; 5 | 6 | [Cmdlet(VerbsCommon.Get, "OSAPachube")] 7 | public class OSAGetPachube : Cmdlet 8 | { 9 | [Parameter(Mandatory = true)] 10 | public string Key { get; set; } 11 | 12 | [Parameter(Mandatory = true)] 13 | public int Feed { get; set; } 14 | 15 | protected override void ProcessRecord() 16 | { 17 | Account a = new Account(Key); 18 | Feed f = new Feed(Feed, a); 19 | WriteObject(f.Get()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/CmdLets/Pachube/invoke-osapachube.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE.PowerShellTools 2 | { 3 | using PachubeDataAccess; 4 | using System.Management.Automation; 5 | 6 | [Cmdlet(VerbsLifecycle.Invoke, "OSAPachube")] 7 | public class OSAInvokePachube : Cmdlet 8 | { 9 | [Parameter(Mandatory = true)] 10 | public string Key { get; set; } 11 | 12 | [Parameter(Mandatory = true)] 13 | public string Value { get; set; } 14 | 15 | [Parameter(Mandatory = true)] 16 | public int Feed { get; set; } 17 | 18 | protected override void ProcessRecord() 19 | { 20 | Account a = new Account(Key); 21 | Feed f = new Feed(Feed, a); 22 | StringFeedItem i = new StringFeedItem(Key, Value); 23 | f.Post(i); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/CmdLets/get-osa.cs: -------------------------------------------------------------------------------- 1 | namespace OSAE.PowerShellTools 2 | { 3 | 4 | using System.Management.Automation; 5 | 6 | 7 | [Cmdlet(VerbsCommon.Get, "OSA")] 8 | public class OSAPS : Cmdlet 9 | { 10 | //OSAELog 11 | private OSAE.General.OSAELog Log = new General.OSAELog("POWERSHELL"); 12 | 13 | [Parameter( 14 | Mandatory = true, 15 | HelpMessage = "The name of the object to get")] 16 | public string Name { get; set; } 17 | 18 | protected override void ProcessRecord() 19 | { 20 | this.Log.Debug("Get-OSA - ProcessRecord - Started"); 21 | OSAEObject obj = OSAEObjectManager.GetObjectByName(Name); 22 | WriteObject(obj); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | $data = get-osa -name "Weather" 7 | $wc = New-Object System.Net.WebClient 8 | 9 | $url = "http://192.168.0.7/emoncms/input/post.json?json={Outside:" + $data.properties["Temp"].value + "}&apikey=507ee7ec14130b874b02c241b5740b5e" 10 | $wc.UploadString($url, "") 11 | 12 | 13 | -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/References/Google.GData.AccessControl.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PowerShellProcessor/References/Google.GData.AccessControl.DLL -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/References/Google.GData.Calendar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PowerShellProcessor/References/Google.GData.Calendar.dll -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/References/Google.GData.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PowerShellProcessor/References/Google.GData.Client.dll -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/References/Google.GData.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PowerShellProcessor/References/Google.GData.Extensions.dll -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/References/NMALib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PowerShellProcessor/References/NMALib.dll -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PowerShellProcessor/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.PowerShellProcessor/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Plugins/OSAE.PubNub/JsonFx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PubNub/JsonFx.dll -------------------------------------------------------------------------------- /Plugins/OSAE.PubNub/PubNub.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | PubNub 4 | 885c557b-131b-4279-960a-0e4467e63c43 5 | 0.4.7 6 | beta 7 | C# PubNub Client 8 | Vaughn Rupp 9 | PubNub 10 | OSAE.PubNub.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=PubNub 12 | 13 | Newtonsoft.Json.dll 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Plugins/OSAE.PubNub/PubnubCore/JsonFx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PubNub/PubnubCore/JsonFx.dll -------------------------------------------------------------------------------- /Plugins/OSAE.PubNub/PubnubCore/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PubNub/PubnubCore/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Plugins/OSAE.PubNub/PubnubCore/ReconnectState.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PubNubMessaging.Core 4 | { 5 | public class ReconnectState 6 | { 7 | public string[] Channels; 8 | public string[] ChannelGroups; 9 | public ResponseType Type; 10 | public Action Callback; 11 | public Action ErrorCallback; 12 | public Action ConnectCallback; 13 | public object Timetoken; 14 | public bool Reconnect; 15 | 16 | public ReconnectState() 17 | { 18 | Channels = null; 19 | ChannelGroups = null; 20 | Callback = null; 21 | ConnectCallback = null; 22 | Timetoken = null; 23 | Reconnect = false; 24 | } 25 | } 26 | } 27 | 28 | -------------------------------------------------------------------------------- /Plugins/OSAE.PubNub/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.PubNub/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.RCSTR40/.vs/OSAE.RCSTR40/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RCSTR40/.vs/OSAE.RCSTR40/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.RCSTR40/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.RCSTR40/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.RCSTR40/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.RCSTR40/OSAE.RCSTR40.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RCSTR40/OSAE.RCSTR40.suo -------------------------------------------------------------------------------- /Plugins/OSAE.RCSTR40/RCSTR40.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | RCS-TR40 4 | 636e475a-24f4-4828-8fb5-e9e329ff1668 5 | 0.4.9 6 | alpha 7 | Utility to read and control an RCS TR40 serial thermostat 8 | Dan Bemowski 9 | RCSTR40 10 | OSAE.RCSTR40.dll 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.RCSTR40/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RCSTR40/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.RFXCOM/.vs/OSAE.RFXCOM/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RFXCOM/.vs/OSAE.RFXCOM/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.RFXCOM/OSAE.RFXCOM.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RFXCOM/OSAE.RFXCOM.suo -------------------------------------------------------------------------------- /Plugins/OSAE.RFXCOM/RFXCOM.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | RFXCOM 4 | e9c99fff-1da0-4e02-b116-c12a35445df1 5 | 0.4.8 6 | alpha 7 | Plugin to support RFXCOM tranceivers 8 | Brian 9 | RFXCOM 10 | OSAE.RFXCOM.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=RFXCOM 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.RFXCOM/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RFXCOM/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.RSS/.vs/OSAE.RSS/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RSS/.vs/OSAE.RSS/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.RSS/OSAE.RSS.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RSS/OSAE.RSS.suo -------------------------------------------------------------------------------- /Plugins/OSAE.RSS/RSS.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | RSS 4 | 91598ecf-e4e2-4e67-b421-2f21223555e9 5 | 0.4.9 6 | stable 7 | Download all your favorite RSS feeds to OSA 8 | Brian Woodworth 9 | RSS 10 | OSAE.RSS.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=RSS 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.RSS/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RSS/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.RadioThermostat/.vs/OSAE.RadioThermostat/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RadioThermostat/.vs/OSAE.RadioThermostat/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.RadioThermostat/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RadioThermostat/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.RadioThermostat/ThermostatLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.RadioThermostat/ThermostatLib.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Rest/Rest.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Rest 4 | 094267E6-416B-4A75-BA16-188842265C17 5 | 0.4.9 6 | beta 7 | Provides Rest Access to OSA 8 | Matthew Stebbings 9 | Rest 10 | OSAE.Rest.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=REST 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Rest/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Rest/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Roomba/.vs/OSAE.Roomba/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Roomba/.vs/OSAE.Roomba/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Roomba/OSAE.Roomba.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Roomba/OSAE.Roomba.suo -------------------------------------------------------------------------------- /Plugins/OSAE.Roomba/Properties/DataSources/OSAE.OSAEObject.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | OSAE.OSAEObject, OSAE.API, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f47a6446f36f79f7 10 | -------------------------------------------------------------------------------- /Plugins/OSAE.Roomba/Properties/DataSources/System.Data.DataSet.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | System.Data.DataSet, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 10 | -------------------------------------------------------------------------------- /Plugins/OSAE.Roomba/RoombaSCI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Roomba/RoombaSCI.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Roomba/Service References/ServiceReference1/service2.xsd: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.SSH/.vs/OSAE.SSH/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SSH/.vs/OSAE.SSH/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.SSH/DiffieHellman.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SSH/DiffieHellman.dll -------------------------------------------------------------------------------- /Plugins/OSAE.SSH/OSAE.SSH.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SSH/OSAE.SSH.suo -------------------------------------------------------------------------------- /Plugins/OSAE.SSH/Org.Mentalis.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SSH/Org.Mentalis.Security.dll -------------------------------------------------------------------------------- /Plugins/OSAE.SSH/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SSH/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.SSH/Tamir.SharpSSH.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SSH/Tamir.SharpSSH.dll -------------------------------------------------------------------------------- /Plugins/OSAE.ScriptProcessor/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.ScriptProcessor/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.ScriptProcessor/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.ScriptProcessor/OSAE.ScriptProcessor.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | 7 | 8 | 9 | 10 | 11 | en-US 12 | false 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.ScriptProcessor/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.ScriptProcessor/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Sony/.vs/OSAE.Sony/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Sony/.vs/OSAE.Sony/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Sony/OSAE.Sony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Sony/OSAE.Sony.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Sony/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Sony/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Sony/Sony.osapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Sony/Sony.osapp -------------------------------------------------------------------------------- /Plugins/OSAE.Sony/SonyAPILib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Sony/SonyAPILib.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Sony/install.sql: -------------------------------------------------------------------------------- 1 | CALL osae_sp_object_type_add ('Sony','Sony Plugin','','PLUGIN',1,0,0,1,'Plugin used to control Sony Smart devices through LAN'); 2 | CALL osae_sp_object_type_state_add ('Sony','ON','Running','Sony plugin is Running'); 3 | CALL osae_sp_object_type_state_add ('Sony','OFF','Stopped','Sony plugin is Stopped'); 4 | CALL osae_sp_object_type_method_add ('Sony','DISCOVERY','Discovery','','','','','Search LAN for Sony Devices'); 5 | CALL osae_sp_object_type_method_add ('Sony','SETDEBUG','Set Debug','TRUE/FALSE','','FALSE','','Set Debug setting'); 6 | CALL osae_sp_object_type_property_add('Sony','Refresh','String','','5','',0,0,'Minutes to Auto-Refresh device states'); 7 | CALL osae_sp_object_type_property_add('Sony','Debug','Boolean','','FALSE',0,0,'Set debug logging'); 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Speech/Interop.WMPLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Speech/Interop.WMPLib.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Speech/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Speech/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Speech/Speech.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Speech/Speech.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Speech 4 | 8d3cff59-97db-48dd-91a3-fb935bb57ed8 5 | 0.4.9 6 | beta 7 | C# Speech Client 8 | Vaughn Rupp 9 | Speech 10 | OSAE.Speech.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Speech 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.SqueezeCenter/.vs/OSAE.SqueezeCenter/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SqueezeCenter/.vs/OSAE.SqueezeCenter/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.SqueezeCenter/OSAE.SqueezeCenter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SqueezeCenter/OSAE.SqueezeCenter.suo -------------------------------------------------------------------------------- /Plugins/OSAE.SqueezeCenter/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.SqueezeCenter/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Tellstick/.vs/OSAE.Tellstick/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Tellstick/.vs/OSAE.Tellstick/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Tellstick/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Tellstick/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Tellstick/TelldusNETWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Tellstick/TelldusNETWrapper.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Tellstick/Tellstick OSA Plugin_2016-08-07.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Tellstick/Tellstick OSA Plugin_2016-08-07.docx -------------------------------------------------------------------------------- /Plugins/OSAE.Tellstick/Tellstick.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tellstick 4 | c470ccaf-f4d5-4690-aa4a-92160b26d69c 5 | 0.4.5 6 | beta 7 | OSA plugin for Tellstick devices 8 | Per Tobiasson 9 | Tellstick 10 | OSAE.Tellstick.dll 11 | 12 | 13 | TelldusNETWrapper.dll 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Plugins/OSAE.Tellstick/Tellstick.osapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Tellstick/Tellstick.osapp -------------------------------------------------------------------------------- /Plugins/OSAE.Twitter/.vs/OSAE.Twitter/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Twitter/.vs/OSAE.Twitter/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Twitter/OSAE.Twitter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Twitter/OSAE.Twitter.suo -------------------------------------------------------------------------------- /Plugins/OSAE.Twitter/OSAE.Twitter/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Twitter/OSAE.Twitter/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Twitter/OSAE.Twitter/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Twitter/OSAE.Twitter/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Twitter/OSAE.Twitter/Twitter.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Twitter 4 | ab365800-15db-46eb-ae8f-b6f967a9178a 5 | 0.2.0 6 | alpha 7 | Post updates to Twitter 8 | Brian Woodworth 9 | Twitter 10 | OSAE.Twitter.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Twitter 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Twitter/OSAE.Twitter/Twitterizer2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Twitter/OSAE.Twitter/Twitterizer2.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Twitter/Twitter.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Twitter 4 | ab365800-15db-46eb-ae8f-b6f967a9178a 5 | 0.4.8 6 | alpha 7 | Post updates to Twitter 8 | Brian Woodworth 9 | Twitter 10 | OSAE.Twitter.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Twitter 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/.vs/OSAE.USBUIRT/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/.vs/OSAE.USBUIRT/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/OSAE.USBUIRT.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | 7 | 8 | 9 | 10 | 11 | en-US 12 | false 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/UsbUirtManagedWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/UsbUirtManagedWrapper.dll -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/USBUIRT_Win7_Vista_v20216.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/USBUIRT_Win7_Vista_v20216.zip -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/amd64/ftd2xx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/amd64/ftd2xx.lib -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/amd64/ftd2xx64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/amd64/ftd2xx64.dll -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/amd64/ftdibus.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/amd64/ftdibus.sys -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/ftdibus.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/ftdibus.cat -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/ftd2xx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/ftd2xx.dll -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/ftd2xx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/ftd2xx.lib -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/ftdibus.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/ftdibus.sys -------------------------------------------------------------------------------- /Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/uuirtdrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.USBUIRT/Windows 7 Driver/i386/uuirtdrv.dll -------------------------------------------------------------------------------- /Plugins/OSAE.W800RF/.vs/OSAE.W800RF/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.W800RF/.vs/OSAE.W800RF/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.W800RF/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.W800RF/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | false 4 | false 5 | 0 6 | true 7 | 0 8 | 1 9 | true 10 | 11 | -------------------------------------------------------------------------------- /Plugins/OSAE.W800RF/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.W800RF/OSAE.W800RF.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | 7 | 8 | 9 | 10 | 11 | en-US 12 | false 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.W800RF/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.W800RF/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.W800RF/W800RF.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | W800RF 4 | fdb9648e-6d74-4592-a0af-69016882ce26 5 | 0.4.9 6 | beta 7 | W800RF Antenna Application 8 | Vaughn Rupp 9 | W800RF 10 | OSAE.W800RF.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=W800RF 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.WUnderground/OSAE.WUnderground.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.WUnderground/OSAE.WUnderground.suo -------------------------------------------------------------------------------- /Plugins/OSAE.WUnderground/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.WUnderground/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Weather/OSAE.Weather.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Weather/OSAE.Weather.suo -------------------------------------------------------------------------------- /Plugins/OSAE.Weather/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | http://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php 7 | 8 | 9 | -------------------------------------------------------------------------------- /Plugins/OSAE.Weather/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Weather/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Weather/Weather.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Weather Plugin 4 | fb3a052d-587b-40f7-a553-ad7680157c25 5 | 0.3.7 6 | alpha 7 | Get current conditions and furture forcasts 8 | Brian Woodworth 9 | Weather 10 | OSAE.Weather.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=Weather 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Plugins/OSAE.Weather/Web References/gov.weather.www/Reference.map: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.WebServer/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.WebServer/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.WebServer/Web Server.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | Web Server 4 | d8410787-1205-4371-bd2c-b453dcd50bca 5 | 0.4.9 6 | beta 7 | Add a web server to OSA 8 | Brian Woodworth, Matthew Stebbings 9 | Web Server 10 | OSAE.WebServer.dll 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.XBMC/.vs/OSAE.XBMC/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.XBMC/.vs/OSAE.XBMC/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.XBMC/OSAE.XBMC.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.XBMC/OSAE.XBMC.suo -------------------------------------------------------------------------------- /Plugins/OSAE.XBMC/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.XBMC/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.XBMC/XBMC.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | XBMC 4 | 501c5519-d072-4953-9cc7-005007f3490c 5 | 0.4.9 6 | alpha 7 | Control XBMC and receive event notifications 8 | Brian Woodworth 9 | XBMC 10 | OSAE.XBMC.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=XBMC 12 | 13 | XBMCRPC.dll 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Plugins/OSAE.XBMC/XBMCRPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.XBMC/XBMCRPC.dll -------------------------------------------------------------------------------- /Plugins/OSAE.XBMC/xbmc-json-async.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.XBMC/xbmc-json-async.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/.vs/OSAE.Zwave/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Zwave/.vs/OSAE.Zwave/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/OSAE.Zwave.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Zwave/OSAE.Zwave.suo -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/OpenZWaveDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Zwave/OpenZWaveDotNet.dll -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/OpenZWaveDotNet.dll.x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Zwave/OpenZWaveDotNet.dll.x64 -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/OSAE.Zwave/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/2GIG/ct100.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/2GIG/ct101.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/2GIG/ct30.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/act/lfm20.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/act/zrp110.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/assa_abloy/RealLivingCapTouch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/danfoss/living.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/danfoss/z.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/duwi/ZWES1000.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/duwi/ZWESJ300.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Continuous operation. 0x01-0x7F: 1-127 seconds in 1-second steps. 0x80-0xFE: 130-1390 seconds (0xFE) in 10 second-steps. 0xFF: 120 seconds (default; 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/everspring/an145.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/everspring/se812.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/everspring/sf812.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/everspring/tse03.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/evolve/lsm-15.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | By default, the LED on the LSM-15 will turn OFF when the load attached is turned ON. To make the LED turn ON when the load attached is turned ON, set parameter to a value of 0. 10 | 11 | 12 | To change the top of the switch to OFF and the bottom of the switch to ON, set parameter to 1. 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/frostdale/fdn2nxx.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/homeseer/ztroller.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/honeywell/th8320zw1000.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/intermatic/ca8900.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/iris/rangeextender.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/leviton/rzi10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/leviton/vrcpg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/leviton/vrf01.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/leviton/vri06.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/leviton/vri10.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/options.xsd: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/qees/reto-plugin-switch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/rcs/em52-zw.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/rcs/pm12-zw.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/rcs/therm0009.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/schlage/BE469NXCEN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/vision/zd2102.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | External Switch Status 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/vision/zs5101eu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/vitrum/vitrumBS.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/waynedalton/WDTC-20.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/wenzhou/tz67.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Defines the behavior of the blue LED. Default: 0 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/wenzhou/tz88.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | If the setting is configured for 1 hour (value=720), the TZ88 will report its instant power consumption every 1 hour. 8 | 9 | 10 | If the setting is configured for 1 hour (value=6), the TZ88 will report its accumulated power consumption (kWh) every 1 hour. 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Plugins/OSAE.Zwave/config/zwave.me/iTemp.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Plugins/SysLog/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/SysLog/Screenshot.jpg -------------------------------------------------------------------------------- /Plugins/SysLog/SysLog.osapd: -------------------------------------------------------------------------------- 1 | 2 | 3 | SysLog 4 | 027998b8-c8e8-43fe-a175-2dc0b08abf6a 5 | 0.0.1 6 | alpha 7 | Allows OSA to process SysLog messages 8 | Matthew Stebbings 9 | SysLog 10 | bin\Debug\OSAE.SysLog.dll 11 | http://www.opensourceautomation.com/wiki/index.php?title=SysLog 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Plugins/Visual Studio Template/OSA Plugin Template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/Plugins/Visual Studio Template/OSA Plugin Template.zip -------------------------------------------------------------------------------- /Plugins/Visual Studio Template/README.txt: -------------------------------------------------------------------------------- 1 | To add the template to visual studio copy the Zip to: 2 | 3 | C:\Users\\Documents\Visual Studio 2012\Templates\ProjectTemplates\ 4 | 5 | Upack the Zip file. When adding a new project "Open Source Automation - Plugin" should be available. 6 | 7 | NOTES: 8 | 9 | do not name your project OSAE.PluginName as this will affect the project creation. Simply call the project the name of the plugin e.g. Zwave. 10 | 11 | Ensure you place the project in the Plugin Folder else the output paths will not be correct due to the number of ..\..\ 12 | 13 | Do not submit the Solution with the new plugin into GIT, only the core plugins are included in the solution. You can however leave project added in your local solution. 14 | -------------------------------------------------------------------------------- /Services/ClientService/Properties/DataSources/OSAE.OSAEObject.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | OSAE.OSAEObject, OSAE.API, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f47a6446f36f79f7 10 | -------------------------------------------------------------------------------- /Services/ClientService/Properties/DataSources/System.Data.DataSet.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | System.Data.DataSet, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 10 | -------------------------------------------------------------------------------- /Services/ClientService/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Services/OSA.Service/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /UI/Manager/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /UI/Manager/LogWindow.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /UI/Manager/LogWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Shapes; 13 | 14 | namespace Manager_WPF 15 | { 16 | /// 17 | /// Interaction logic for LogWindow.xaml 18 | /// 19 | public partial class LogWindow : Window 20 | { 21 | public LogWindow() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /UI/Manager/Properties/DataSources/OSAE.OSAEObject.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | OSAE.OSAEObject, OSAE.API, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f47a6446f36f79f7 10 | -------------------------------------------------------------------------------- /UI/Manager/Properties/DataSources/System.Data.DataSet.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | System.Data.DataSet, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 10 | -------------------------------------------------------------------------------- /UI/Manager/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /UI/Manager/Resources/OSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Manager/Resources/OSA.png -------------------------------------------------------------------------------- /UI/Manager/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Manager/Resources/icon.ico -------------------------------------------------------------------------------- /UI/Manager/Resources/icon_3_32x32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Manager/Resources/icon_3_32x32x32.png -------------------------------------------------------------------------------- /UI/Manager/Resources/logs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Manager/Resources/logs.jpg -------------------------------------------------------------------------------- /UI/Manager/Resources/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Manager/Resources/screen.jpg -------------------------------------------------------------------------------- /UI/Manager/Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Manager/Resources/settings.png -------------------------------------------------------------------------------- /UI/Manager/Resources/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Manager/Resources/upgrade.png -------------------------------------------------------------------------------- /UI/Manager/Service References/WCFService/item.disco: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /UI/Manager/Service References/WCFService/item3.xsd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /UI/Manager/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /UI/Manager/app.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/BrowserFrame.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/ClickImage.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/ImagePicker.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | 10 | namespace OSAE.UI.Controls 11 | { 12 | public partial class ImagePicker : Form 13 | { 14 | public ImagePicker() 15 | { 16 | InitializeComponent(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/MjpegProcessor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/OSAE.UI.Controls/MjpegProcessor.dll -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/NavigationImage.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/OSAE.UI.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/OSAE.UI.Controls/OSAE.UI.Controls.dll -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/ObjectList.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/PropertyLabel.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/StaticLabel.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /UI/OSAE.UI.Controls/TimerLabel.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /UI/PluginDescriptionEditor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace PluginDescriptionEditor 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main(string[] args) 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new EditorForm(args)); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /UI/PluginDescriptionEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UI/PluginDescriptionEditor/Resources/64 bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/PluginDescriptionEditor/Resources/64 bit.png -------------------------------------------------------------------------------- /UI/PluginDescriptionEditor/Resources/AddNew.Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/PluginDescriptionEditor/Resources/AddNew.Image.png -------------------------------------------------------------------------------- /UI/PluginDescriptionEditor/Resources/Delete.Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/PluginDescriptionEditor/Resources/Delete.Image.png -------------------------------------------------------------------------------- /UI/PluginDescriptionEditor/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /UI/PluginDescriptionEditor/pluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/PluginDescriptionEditor/pluginIcon.ico -------------------------------------------------------------------------------- /UI/Screens/.vs/Screens/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Screens/.vs/Screens/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /UI/Screens/AddControl.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /UI/Screens/AddControl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Data; 8 | using System.Windows.Documents; 9 | using System.Windows.Input; 10 | using System.Windows.Media; 11 | using System.Windows.Media.Imaging; 12 | using System.Windows.Shapes; 13 | 14 | namespace Screens 15 | { 16 | /// 17 | /// Interaction logic for AddControl.xaml 18 | /// 19 | public partial class AddControl : Window 20 | { 21 | public AddControl() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /UI/Screens/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /UI/Screens/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | using System.Windows.Threading; 8 | 9 | namespace Screens 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | 18 | public partial class App : Application 19 | { 20 | void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) 21 | { 22 | MessageBox.Show(e.Exception.ToString()); 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /UI/Screens/ChangeScreen.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /UI/Screens/OSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Screens/OSA.png -------------------------------------------------------------------------------- /UI/Screens/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /UI/Screens/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /UI/Screens/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Screens/icon.ico -------------------------------------------------------------------------------- /UI/Screens/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Screens/icon.png -------------------------------------------------------------------------------- /UI/UserControlDescriptionEditor/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /UI/UserControlDescriptionEditor/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace UserControlDescriptionEditor 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main(string[] args) 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new EditorForm(args)); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /UI/UserControlDescriptionEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /UI/UserControlDescriptionEditor/Resources/64 bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/UserControlDescriptionEditor/Resources/64 bit.png -------------------------------------------------------------------------------- /UI/UserControlDescriptionEditor/Resources/AddNew.Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/UserControlDescriptionEditor/Resources/AddNew.Image.png -------------------------------------------------------------------------------- /UI/UserControlDescriptionEditor/Resources/Delete.Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/UserControlDescriptionEditor/Resources/Delete.Image.png -------------------------------------------------------------------------------- /UI/UserControlDescriptionEditor/pluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/UserControlDescriptionEditor/pluginIcon.ico -------------------------------------------------------------------------------- /UI/Voice/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /UI/Voice/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Windows; 7 | 8 | namespace VR2 9 | { 10 | /// 11 | /// Interaction logic for App.xaml 12 | /// 13 | public partial class App : Application 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /UI/Voice/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /UI/Voice/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Voice/Resources/icon.ico -------------------------------------------------------------------------------- /UI/Voice/Resources/icon_3_32x32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Voice/Resources/icon_3_32x32x32.png -------------------------------------------------------------------------------- /UI/Voice/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /UI/Web/Bin/NetworkCommsDotNetComplete.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Bin/NetworkCommsDotNetComplete.dll -------------------------------------------------------------------------------- /UI/Web/Images/OSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/OSA.png -------------------------------------------------------------------------------- /UI/Web/Images/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/cog.png -------------------------------------------------------------------------------- /UI/Web/Images/cog_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/cog_red.png -------------------------------------------------------------------------------- /UI/Web/Images/delete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/delete.jpg -------------------------------------------------------------------------------- /UI/Web/Images/grd_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/grd_alt.png -------------------------------------------------------------------------------- /UI/Web/Images/grd_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/grd_head.png -------------------------------------------------------------------------------- /UI/Web/Images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/icon.ico -------------------------------------------------------------------------------- /UI/Web/Images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/loading.gif -------------------------------------------------------------------------------- /UI/Web/Images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/refresh.png -------------------------------------------------------------------------------- /UI/Web/Images/upgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/Images/upgrade.png -------------------------------------------------------------------------------- /UI/Web/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /UI/Web/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /UI/Web/controls/VideoStreamViewer.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="VideoStreamViewer.ascx.cs" Inherits="controls_VideoStreamViewer" classname="VideoStreamViewer"%> 2 | 3 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlBrowser.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlBrowser.ascx.cs" Inherits="controls_ctrlBrowser" className="ctrlBrowser"%> 2 | 3 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlClickImage.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlClickImage.ascx.cs" Inherits="controls_ctrlClickImage" className="ctrlClickImage"%> 2 | 3 | 4 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlEmbedded.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlEmbedded.ascx.cs" Inherits="controls_ctrlEmbedded" className="ctrlEmbedded"%> 2 | 3 | 4 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlNavigationImage.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlNavigationImage.ascx.cs" Inherits="controls_ctrlNavigationImage" className="ctrlNavigationImage"%> 2 | 3 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlPropertyLabel.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlPropertyLabel.ascx.cs" Inherits="controls_ctrlPropertyLabel" className="ctrlPropertyLabel"%> 2 | 3 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlStateImage.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlStateImage.ascx.cs" Inherits="controls_ctrlStateImage" className="ctrlStateImage"%> 2 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlTimerLabel.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlTimerLabel.ascx.cs" Inherits="controls_ctrlTimerLabel" className="ctrlTimerLabel"%> 2 | 3 | -------------------------------------------------------------------------------- /UI/Web/controls/ctrlUserControl.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlUserControl.ascx.cs" Inherits="controls_ctrlUserControl" className="ctrlUserControl"%> 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UI/Web/controls/usercontrols/StateButton/ctrlUserControl.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlUserControl.ascx.cs" Inherits="controls_ctrlUserControl" className="ctrlUserControl"%> 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /UI/Web/mobile/images/osa_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/mobile/images/osa_logo.png -------------------------------------------------------------------------------- /UI/Web/mobile/jquery/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/mobile/jquery/images/ajax-loader.gif -------------------------------------------------------------------------------- /UI/Web/mobile/jquery/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/mobile/jquery/images/ajax-loader.png -------------------------------------------------------------------------------- /UI/Web/mobile/jquery/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/mobile/jquery/images/icons-18-black.png -------------------------------------------------------------------------------- /UI/Web/mobile/jquery/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/mobile/jquery/images/icons-18-white.png -------------------------------------------------------------------------------- /UI/Web/mobile/jquery/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/mobile/jquery/images/icons-36-black.png -------------------------------------------------------------------------------- /UI/Web/mobile/jquery/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UI/Web/mobile/jquery/images/icons-36-white.png -------------------------------------------------------------------------------- /UI/Web/permissionError.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | using System.Data; 8 | using OSAE; 9 | 10 | public partial class permissionError : System.Web.UI.Page 11 | { 12 | public void RaisePostBackEvent(string eventArgument) 13 | { 14 | string[] args = eventArgument.Split('_'); 15 | } 16 | 17 | protected void Page_Load(object sender, EventArgs e) 18 | { 19 | Master.Log.Error("A Permission Error has occured."); 20 | } 21 | } -------------------------------------------------------------------------------- /UI/Web/welcome.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | using System.Data; 8 | using OSAE; 9 | 10 | public partial class welcome : System.Web.UI.Page 11 | { 12 | public void RaisePostBackEvent(string eventArgument) 13 | { 14 | string[] args = eventArgument.Split('_'); 15 | } 16 | 17 | protected void Page_Load(object sender, EventArgs e) 18 | { 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UpgradeLog.htm -------------------------------------------------------------------------------- /UpgradeLog2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UpgradeLog2.htm -------------------------------------------------------------------------------- /UpgradeLog3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UpgradeLog3.htm -------------------------------------------------------------------------------- /UserControls/StateButton/Plugin/MYStateButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UserControls/StateButton/Plugin/MYStateButton.dll -------------------------------------------------------------------------------- /UserControls/StateButton/Plugin/MyStateButton.osauc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UserControls/StateButton/Plugin/MyStateButton.osauc -------------------------------------------------------------------------------- /UserControls/StateButton/Plugin/MyStateButton.osaud: -------------------------------------------------------------------------------- 1 | 2 | 3 | My State Button 4 | f52c9b60-622c-450d-926f-5549543c2bb3 5 | 0.4.8 6 | beta 7 | OSA Screens State Button Control 8 | Kirk Herron 9 | MyStateButton 10 | MYStateButton.dll 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /UserControls/StateButton/Plugin/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourceautomation/Open-Source-Automation/f89e18bfa0e83df4edb1b4ba32d8d89bfa33eee5/UserControls/StateButton/Plugin/Screenshot.jpg -------------------------------------------------------------------------------- /UserControls/StateButton/Plugin/ctrlUserControl.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctrlUserControl.ascx.cs" Inherits="controls_ctrlUserControl" className="ctrlUserControl"%> 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /UserControls/StateButton/Plugin/install.sql: -------------------------------------------------------------------------------- 1 | CALL osae_sp_object_type_add ('USER CONTROL MYSTATEBUTTON','Custom User Control','SYSTEM','USER CONTROL',0,1,0,1); 2 | 3 | CALL osae_sp_object_type_property_add('USER CONTROL MYSTATEBUTTON','Control Type','String','','',0); 4 | 5 | CALL osae_sp_object_type_property_add('USER CONTROL MYSTATEBUTTON','Object Name','String','','',0); 6 | 7 | CALL osae_sp_object_type_property_add('USER CONTROL MYSTATEBUTTON','X','Integer','','',0); 8 | 9 | CALL osae_sp_object_type_property_add('USER CONTROL MYSTATEBUTTON','Y','Integer','','',0); 10 | 11 | CALL osae_sp_object_type_property_add('USER CONTROL MYSTATEBUTTON','ZOrder','Integer','','',0); -------------------------------------------------------------------------------- /UserControls/StateButton/StateButton/CustomUserControl.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 |