Book Image

Internet of Things Programming with JavaScript

Book Image

Internet of Things Programming with JavaScript

Overview of this book

The Internet of Things is taking the tech world by storm, and JavaScript is at its helm. This book will get you to grips with this exciting new technology. Where do Node.js, HTML5 and Windows 10 IoT Core come in with JavaScript and IoT? Why Raspberry Pi Zero rather than Arduino? How do you configure and build an IoT network from scratch? All your IoT JavaScript questions are answered in this book.
Table of Contents (15 chapters)
Internet of Things Programming with JavaScript
Credits
About the Author
www.packtpub.com
Customer Feedback
Preface

Controlling and dimming a LED


In this section, we will discuss a project that can be applied to a home automation. We will dim an LED of DC, this can done to a lamp in a house. The LED will change its brightness, and we connect the LED to the GPIO18 of the Raspberry Pi in series with a resistor of 330 ohms.

Software requirements

First we need to install the pigpio package. In the Terminal, type the following:

wget abyz.co.uk/rpi/pigpio/pigpio.zip

Then unzip the package:

unzip pigpio.zip

After that, navigate to the unzipped folder with the following: 

cd PIGPIO

Type the following to execute the command:

Make

Finally install the file:

sudo make install

Testing the LED

In this section, we will test the sensor with a script in Node.js:

var Gpio = require('pigpio').Gpio; 
 
// Create led instance 
var led = new Gpio(18, {mode: Gpio.OUTPUT}); 
var dutyCycle = 0; 
// Go from 0 to maximum brightness 
setInterval(function () { 
  led.pwmWrite(dutyCycle); 
  dutyCycle...