2014-12-19 09:20:48 -05:00
|
|
|
/*
|
|
|
|
|
* Author: Zion Orent <zorent@ics.com>
|
|
|
|
|
* Copyright (c) 2014 Intel Corporation.
|
|
|
|
|
*
|
2019-07-30 19:41:32 -07:00
|
|
|
* This program and the accompanying materials are made available under the
|
|
|
|
|
* terms of the The MIT License which is available at
|
|
|
|
|
* https://opensource.org/licenses/MIT.
|
2014-12-19 09:20:48 -05:00
|
|
|
*
|
2019-07-30 19:41:32 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2014-12-19 09:20:48 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Load dust sensor module
|
|
|
|
|
var dustSensor = require('jsupm_ppd42ns');
|
|
|
|
|
// Instantiate a dust sensor on digital pin D8
|
|
|
|
|
var myDustSensor = new dustSensor.PPD42NS(8);
|
|
|
|
|
|
|
|
|
|
var data;
|
|
|
|
|
|
|
|
|
|
// Continue until user ends program
|
|
|
|
|
var notice = "This program will give readings ";
|
|
|
|
|
notice += "every 30 seconds until you stop it"
|
|
|
|
|
console.log(notice);
|
|
|
|
|
while(1)
|
|
|
|
|
{
|
|
|
|
|
data = myDustSensor.getData();
|
|
|
|
|
console.log("Low pulse occupancy: " + data.lowPulseOccupancy);
|
|
|
|
|
console.log("Ratio: " + data.ratio);
|
|
|
|
|
console.log("Concentration: " + data.concentration);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Print message when exiting
|
|
|
|
|
process.on('SIGINT', function()
|
|
|
|
|
{
|
|
|
|
|
console.log("Exiting...");
|
|
|
|
|
process.exit(0);
|
|
|
|
|
});
|