Entries by Marcin

XLR switch remote control via RS-232 and Telnet from Python

The XLR switch and BNC switch from LinkBone can be remotely controlled via a Ethernet or RS-232 interfaces from Python environment. This article explains how to prepare an Python environment for remote control of XLR switches. The complete python module implementations and code examples are included.   The example application using XLR switch as a […]

XLR switch and BNC switch Python module for remote control via serial RS-232

XLR switch and BNC switch with remote control via RS-232 Module can be used in Python 3.0. //****************************************************// // Module: RS232linkbone.py // // Author: Marcin Debski // //        XLR Switch and BNC Switch module for remote // //        control via RS-232                          // // www.linkbone.com // //****************************************************// ”’ import time import serial class rs232: def __init__(self, […]

XLR switch or BNC switch Python module for remote control via Telnet

XLR switch or BNC switch with remote control via Ethernet (Telnet) Python module for remote control via Telnet Module can be used in Python 3.0. //****************************************************// // Module: TELNETlinkbone.py // // Author: Marcin Debski // // XLR Switch or BNC Switch module for remote // // control via Telnet // // www.linkbone.com // //****************************************************// ”’ […]