├── .DS_Store ├── .gitattributes ├── .gitignore ├── ASCOMSonyCameraDriver.sln ├── ASCOMSonyCameraDriver ├── ASCOM.ico ├── ASCOM.png ├── ASCOMDriverTemplate.snk ├── ASCOMSonyCameraDriver.csproj ├── CameraProperty.cs ├── Driver.cs ├── Installer │ ├── Sony Mirrorless Camera Readme.htm │ └── Sony Mirrorless Driver Setup.iss ├── License Info.txt ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── ASCOM.bmp │ └── Warning.png ├── SetupDialogForm.cs ├── SetupDialogForm.designer.cs ├── SetupDialogForm.resx ├── Sony Mirrorless Camera Readme.htm ├── Sony Mirrorless Driver Test.js ├── SonyCamera.cs ├── SonyCameraEnumerator.cs ├── SonyCommon.cs ├── SonyImage.cs ├── Warning.png └── app.config ├── README.md └── SonyMirrorlessTest ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SonyMirrorlessTest.csproj └── app.config /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver.sln -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/ASCOM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/ASCOM.ico -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/ASCOM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/ASCOM.png -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/ASCOMDriverTemplate.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/ASCOMDriverTemplate.snk -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/ASCOMSonyCameraDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/ASCOMSonyCameraDriver.csproj -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/CameraProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/CameraProperty.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Driver.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Installer/Sony Mirrorless Camera Readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Installer/Sony Mirrorless Camera Readme.htm -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Installer/Sony Mirrorless Driver Setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Installer/Sony Mirrorless Driver Setup.iss -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/License Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/License Info.txt -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Properties/Resources.resx -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Properties/Settings.settings -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Resources/ASCOM.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Resources/ASCOM.bmp -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Resources/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Resources/Warning.png -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/SetupDialogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/SetupDialogForm.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/SetupDialogForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/SetupDialogForm.designer.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/SetupDialogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/SetupDialogForm.resx -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Sony Mirrorless Camera Readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Sony Mirrorless Camera Readme.htm -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Sony Mirrorless Driver Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Sony Mirrorless Driver Test.js -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/SonyCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/SonyCamera.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/SonyCameraEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/SonyCameraEnumerator.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/SonyCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/SonyCommon.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/SonyImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/SonyImage.cs -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/Warning.png -------------------------------------------------------------------------------- /ASCOMSonyCameraDriver/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/ASCOMSonyCameraDriver/app.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/README.md -------------------------------------------------------------------------------- /SonyMirrorlessTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/SonyMirrorlessTest/Program.cs -------------------------------------------------------------------------------- /SonyMirrorlessTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/SonyMirrorlessTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SonyMirrorlessTest/SonyMirrorlessTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/SonyMirrorlessTest/SonyMirrorlessTest.csproj -------------------------------------------------------------------------------- /SonyMirrorlessTest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougforpres/ASCOMSonyCameraDriver/HEAD/SonyMirrorlessTest/app.config --------------------------------------------------------------------------------