anklimov / hdmi-matrix-controller

Python implementation of the Monoprice Blackbird HDMI Matrix Controller serial protocol.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status

Python implementation of the Monoprice Blackbird HDMI Matrix Controller serial protocol.

Protocol spec

Example usage:

import serial

import hdmi_matrix_controller

BAUD_RATE = 19200
TIMEOUT = 1

serial_dev = serial.Serial('/dev/ttyUSB0', BAUD_RATE, TIMEOUT)
controller = hdmi_matrix_controller.HdmiMatrixController(serial_dev)

controller.set_beep(false)
controller.change_port(1, 2)

About

Python implementation of the Monoprice Blackbird HDMI Matrix Controller serial protocol.

License:MIT License


Languages

Language:Python 100.0%