Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyTcspd

Python client for interfacing with LNA's Telescope Control System controller's firmware.

Simple example, see examples for more.

from pyTcspd import Controller, SerialSender, TcsPdCommands

commands = TcsPdCommands()
controller = Controller(SerialSender(timeout_s=10), commands)
controller.open("/dev/ttyUSB0")
try:
    controller.send(commands.move_dome_to_tag(87))
    status = controller.send(commands.status_dome())
    print(status.tag, status.busy)
finally:
    controller.close()

About

Python client for interfacing with TCSPD controllers

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages