Skip to content

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

License

Notifications You must be signed in to change notification settings

seanwatson/hdmi-matrix-controller

Repository files navigation

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.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages