2015-02-25 15:57:48 -05:00
|
|
|
/*
|
|
|
|
* Author: Zion Orent <zorent@ics.com>
|
|
|
|
* Copyright (c) 2015 Intel Corporation.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-09-08 13:55:23 -07:00
|
|
|
var gsr_lib = require("jsupm_gsr");
|
2015-02-25 15:57:48 -05:00
|
|
|
|
2016-09-08 13:55:23 -07:00
|
|
|
// The was tested with the GSR Galvanic Skin Response Sensor module.
|
2015-02-25 15:57:48 -05:00
|
|
|
|
2016-09-08 13:55:23 -07:00
|
|
|
// Instantiate a GSR on analog pin A0
|
|
|
|
var gsr_obj = new gsr_lib.GSR(0);
|
2015-02-25 15:57:48 -05:00
|
|
|
console.log("Calibrating....");
|
2016-09-08 13:55:23 -07:00
|
|
|
gsr_obj.calibrate();
|
2015-02-25 15:57:48 -05:00
|
|
|
|
|
|
|
var myInterval = setInterval(function()
|
|
|
|
{
|
2016-09-08 13:55:23 -07:00
|
|
|
console.log(gsr_obj.value());
|
2015-02-25 15:57:48 -05:00
|
|
|
}, 500);
|
|
|
|
|
|
|
|
|
|
|
|
// When exiting: clear interval, and print message
|
|
|
|
process.on('SIGINT', function()
|
|
|
|
{
|
|
|
|
clearInterval(myInterval);
|
2016-09-08 13:55:23 -07:00
|
|
|
gsr_obj = null;
|
|
|
|
gsr_lib.cleanUp();
|
|
|
|
gsr_lib = null;
|
2015-02-25 15:57:48 -05:00
|
|
|
console.log("Exiting...");
|
|
|
|
process.exit(0);
|
|
|
|
});
|