WiringPi Library Installation Guide
WiringPi is a GPIO library developed for platforms like Raspberry Pi. This library allows you to control the GPIO pins of the Raspberry Pi easily and effectively. Soft PLC also uses the WiringPi library for the usage of GPIOs. Therefore, WiringPi needs to be installed for Soft PLC to work on Raspberry Pi.
Installing WiringPi
To install WiringPi on Raspberry Pi, execute the following commands in the terminal. (Installation steps may vary for other platforms.)
1. Install Git:
bash
sudo apt install git
2. Clone WiringPi:
bash
sudo git clone https://github.com/WiringPi/WiringPi.git
3. Navigate to the WiringPi Directory:
bash
cd WiringPi
4. Permission to the Build File
bash
sudo chmod +x ./build
5. Build WiringPi:
bash
sudo ./build
For more information about WiringPi, you can visit the here.