Hello IoT (PIGPIO)
This article is part 2 of another article I wrote a few weeks ago (Hello IoT (RPIO)), where we are building the same circuit, but the code is written in Node.js using the PIGPIO library. I highly recommend you read that article before you continue reading this one.
PIGPIO
As indicated on the PIGPIO page, this is a wrapper for the pigpio C library but built for Node.js.
Before we can start using this library, we must ensure we have Pigpio C library installed, so please go ahead and type pigpiod -v in the terminal window. We should already have a version installed, but to be safe, let’s bring it up to the newest version with these commands sudo apt-get update and then sudo apt-get install pigpio.
Using The PIGPIO Library
Now that we have the latest Pigpio C library version, we need to install the PIGPIO npm package using this command npm install pigpio. After that, create a new file named S01_LedButton_PIGPIO.js and place it in the same folder you have the S01_LedButton_RPIO.js file. See (Hello IoT (RPIO)) for instructions on how that file was created.
Paste this code int the new file:
Once you have this file created, you can run it by typing this command: sudo node S01_LedButton_PIGPIO.js. Notice that we need to use sudo for PIGPIO, but that requirement does not exist for RPIO. The project works in the same way as we discussed in the (Hello IoT (RPIO)) article. Also, note that you can use VS Code to debug your code if you run the code like this: sudo node inspect S01_LedButton_PIGPIO.js.
So, what does this code do?
1Imports the PIGPIO library3-4Defines the HIGH/LOW constants with the values expected for the library.-
6-7Define the pins used for the LED and the button.Notice that when we used these pins in RPIO, we used the pin’s position. For PIGPIO, we need to use the pin names. We are using GPIO17 and GPIO18, and we need to use those numbers here. For additional reference on the pins numbering, please visit the GPIO Pins article.
11Defines the input pin.-
12Defines the output pin.Note that the button uses a Pull-Up Resistor. For more information, please visit Pull-Up, Pull-Down Resistors article.
14-20Flip the output from a LOW to a HIGH or a HIGH to a LOW. The LED Turns ON/OFF.22-33The main application…-
34Invokes the main application 23Defines the original state for the LED (off).-
25Remember the noise on the button?Please visit the Debouncing A Button article to understand why this is important.
PIGPIO has a nice feature that handles this automatically. You need to indicate how long a button should be down to get an alert. The main difference is that 500ms is a massive number for PIGPIO, and we are using 10,000 µs (which corresponds to 10 ms).
27-32We are building a handler for the alert event on the button pin. We ask PIGPIO to let us know when the user presses or releases the button.28-31We are only concern about the button release29Flip the state of the LED30Assign the value to the LED, changing the state of the LED.
Support me with a small contribution by Paypal or, if you prefer, buy me a coffee.
Please leave a comment
Comments are powered by Utterances. A GitHub account is required to comment. Comments are moderated. Be respectful. No swearing or inflammatory language. No spam.
I reserve the right to delete any inappropriate comments. All comments for all pages can be viewed and searched online here.
Opinions expressed in this blog are solely my own and do not express the views or opinions of my employer, wife, son, friends, boss, or anybody else! 😀
To edit or delete your comment: