This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'win32ole' # this allows us to create instances of Windows COM objects | |
# create instances of each of our drivers | |
$filt = WIN32OLE.new("ASCOM.Simulator.FilterWheel") | |
$foc = WIN32OLE.new("ASCOM.Simulator.Focuser") | |
$tele = WIN32OLE.new("ASCOM.Simulator.Telescope") | |
$cam = WIN32OLE.new("ASCOM.Simulator.Camera") | |
# a function that disconnects from each connected device | |
def DisconnectAllDevices() |