├── .gitignore ├── ASCOM_Driver ├── ASCOM.ico ├── ASCOM.png ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── darkskygeek.bmp │ ├── icon-cancel-24.png │ └── icon-ok-24.png ├── SetupDialogForm.cs ├── SetupDialogForm.designer.cs ├── SetupDialogForm.resx ├── SwitchHub.cs ├── app.config ├── ascom-switch-hub.csproj └── ascom-switch-hub.sln ├── Installer ├── Inno Setup Script.iss └── WizardImageFile.bmp ├── LICENSE ├── README.md └── images ├── donate.png ├── screenshot1.png ├── screenshot2.png └── screenshot3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /ASCOM_Driver/ASCOM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/ASCOM.ico -------------------------------------------------------------------------------- /ASCOM_Driver/ASCOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/ASCOM.png -------------------------------------------------------------------------------- /ASCOM_Driver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ASCOM_Driver/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ASCOM_Driver/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Properties/Resources.resx -------------------------------------------------------------------------------- /ASCOM_Driver/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ASCOM_Driver/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Properties/Settings.settings -------------------------------------------------------------------------------- /ASCOM_Driver/Resources/darkskygeek.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Resources/darkskygeek.bmp -------------------------------------------------------------------------------- /ASCOM_Driver/Resources/icon-cancel-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Resources/icon-cancel-24.png -------------------------------------------------------------------------------- /ASCOM_Driver/Resources/icon-ok-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/Resources/icon-ok-24.png -------------------------------------------------------------------------------- /ASCOM_Driver/SetupDialogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/SetupDialogForm.cs -------------------------------------------------------------------------------- /ASCOM_Driver/SetupDialogForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/SetupDialogForm.designer.cs -------------------------------------------------------------------------------- /ASCOM_Driver/SetupDialogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/SetupDialogForm.resx -------------------------------------------------------------------------------- /ASCOM_Driver/SwitchHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/SwitchHub.cs -------------------------------------------------------------------------------- /ASCOM_Driver/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/app.config -------------------------------------------------------------------------------- /ASCOM_Driver/ascom-switch-hub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/ascom-switch-hub.csproj -------------------------------------------------------------------------------- /ASCOM_Driver/ascom-switch-hub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/ASCOM_Driver/ascom-switch-hub.sln -------------------------------------------------------------------------------- /Installer/Inno Setup Script.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/Installer/Inno Setup Script.iss -------------------------------------------------------------------------------- /Installer/WizardImageFile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/Installer/WizardImageFile.bmp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/README.md -------------------------------------------------------------------------------- /images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/images/donate.png -------------------------------------------------------------------------------- /images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/images/screenshot1.png -------------------------------------------------------------------------------- /images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/images/screenshot2.png -------------------------------------------------------------------------------- /images/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlecomte/ascom-switch-hub/HEAD/images/screenshot3.png --------------------------------------------------------------------------------