PyTSX: Imaging automation for TheSkyX using Python
TheSky X by Software Bisque is capable to control the camera, autoguider, focuser, and mount. And the program also accepts commands via the TCP socket. There arises the possibility to fully automate the imaging equipment with a single click! Hence, I developed the automation program based on python 2.7. Python is used because it is portable and cross-platform. In windows, I recommend WinPython 2.7 for Windows. This program will perform 1) finding home 2) slewing to a target 3) autofocus 4) autoguiding 5) imaging with various combinations of filter slots, bins, and exposure time 6) dithering between frames 7) flipping the mount if crossing the meridian 8) parking mount 9) sending notification to your mobile device after completion via Pushover App. Need to set Pushover key/token in the program: # Key/Token for Pushover notification (For more information, visit https://pushover.net/) PUSHOVER_USER="YOUR_USER_KEY" PUSHOV...