Command line interface and update tools for SM Dashboard controller
Enable I2C communication first:
sudo raspi-configA good article about I2C on Raspberry Pi can be found here.
If you use Ubuntu, you need to install raspi-config first:
sudo apt update
sudo apt install raspi-configMake sure you have all the tools you need:
sudo apt update
sudo apt-get install git build-essentialInstall the command:
cd
git clone https://github.com/SequentMicrosystems/dash-rpi.git
cd dash-rpi/
sudo make installNow you can access all the functions of the Dashboard controller through the command "dash". Use -h option for help:
dash -hIf you clone the repository, any updates can be made with the following commands:
cd ~/dash-rpi/
git pull
sudo make install