Refactor and update of OpenHD
git submodule update --init
sudo apt install cython libv4l-dev python3-numpy python3-serial python3-lxml libasio-dev
sudo apt install python3-picamera
Install wifibroadcast_bridge from here: https://github.com/webbbn/wifibroadcast_bridge
This defaults to installing in the system directories. Add -DCMAKE_INSTALL_PREFIX=
to install in a different directory.mkdir build
cd build
cmake ..
Add sudo
if you're installing in the system directories and not already running as root.
make install
cmake -DCMAKE_INSTALL_PREFIX=/ ..
sudo make install
sudo ../scripts/postinst
cpack
This can be installed with:
sudo dpkg -i *.deb
Prior to installation various configuration values can be changed in the conf/openhd file. This file gets intalled into /etc/default/openhd during installation.
The installation includes a standard systemd service file. The following commands will start the service and enable it to automatically start on boot.
sudo systemctl enable openhd
sudo systemctl start openhd