Drivers for Anric controller
Enable I2C communication first:
sudo raspi-configA good article about I2C on Raspberry 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 tools you need:
sudo apt update
sudo apt-get install git build-essentialInstall the command:
git clone https://github.com/SequentMicrosystems/anric-rpi.git
cd anric-rpi/
sudo make installNow you can access all the functions of the Anric controller through the command "anric". Use -h option for help:
anric -hIf you clone the repository any update can be made with the following commands:
cd anric-rpi/
git pull
sudo make install