-
Notifications
You must be signed in to change notification settings - Fork 2
Install
Robert Ferris edited this page May 30, 2016
·
1 revision
ATEM Television Studio needs to have firmware 4.1. Mac Windows
TVSControl is written for XKeys device model [XK-24](http://www.piengineering.com/xkeys/xk24.php XK-24).
The majority of the setup is done on the raspberrypi model B. This is the brains of the control.
SD card for Raspberry Pi needs to be formatted and Raspbian Wheezy 2013-09-25 installed.
sudo screen /dev/tty.usbserial 115200
sudo apt-get update
sudo apt-get install qt4-dev-tools
sudo apt-get install libusb-1.0-0-dev
sudo apt-get install cmake
wget http://www.piengineering.com/developer/SDKs/pihid32-1.0.0.tar.gz
tar xvf pihid32-1.0.0.tar.gz
cd pihid32-1.0.0
./configure -D CMAKE_INSTALL_PREFIX=/usr
make
sudo make install
sudo cp udev/90-xkeys.rules /etc/udev/rules.d/
cd ..
There's a minor typo that needs to be fixed sudo nano /etc/udev/rules.d/90-xkeys.rules
and delete "S" from "ATTRS".
This is a fork of libqatemcontrol before Blackmagic Design moved the ATEM switchers to firmware 4.2.
wget https://github.com/czechtech/libqatemcontrol41/archive/master.zip
unzip master.zip
rm master.zip
cd libqatemcontrol41-master
qmake && make
sudo make install
cd ..
wget https://github.com/czechtech/libqxkey24/archive/master.zip
unzip master.zip
rm master.zip
cd libqxkey24-master
qmake && make
sudo make install
cd ..
wget https://tvscontrol.googlecode.com/svn/trunk
cd tvscontrol
qmake && make
sudo make install
To have tvscontrol start automatically upon powering on:
sudo cp tvscontrol.sh /etc/init.d/
sudo chmod 755 /etc/init.d/tvscontrol.sh
sudo update-rc.d tvscontrol.sh defaults
cd ..
sudo poweroff
Wait 10 seconds, then unplug and replug in power to reboot.