.. note:: Hello, welcome to the SunFounder Raspberry Pi & Arduino & ESP32 Enthusiasts Community on Facebook! Dive deeper into Raspberry Pi, Arduino, and ESP32 with fellow enthusiasts. **Why Join?** - **Expert Support**: Solve post-sale issues and technical challenges with help from our community and team. - **Learn & Share**: Exchange tips and tutorials to enhance your skills. - **Exclusive Previews**: Get early access to new product announcements and sneak peeks. - **Special Discounts**: Enjoy exclusive discounts on our newest products. - **Festive Promotions and Giveaways**: Take part in giveaways and holiday promotions. 👉 Ready to explore and create with us? Click [|link_sf_facebook|] and join today! Check the pigpio =================== pigpio is a module used to control Raspberry Pi GPIO channels. This package provides some methods to control GPIO on Raspberry Pi. For examples and documentation, please visit: https://www.npmjs.com/package/pigpio. Enter the following command to install the pigpio library. .. raw:: html .. code-block:: npm install pigpio Check if the library is installed successfully, change the directory and enter nodejs: .. raw:: html .. code-block:: cd ~/raphael-kit/nodejs nodejs .. image:: img/pigpio1.png Then enter require('pigpio'): .. raw:: html .. code-block:: require('pigpio') .. image:: img/pigpio2.png If the above screen appears, the library installation is successful. If you want to exit node CLI, please press Ctrl+C twice. .. image:: img/pigpio3.png