2015-02-25 15:57:48 -05:00
|
|
|
/*
|
|
|
|
* Author: Zion Orent <zorent@ics.com>
|
|
|
|
* Copyright (c) 2015 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.
|
2015-02-25 15:57:48 -05:00
|
|
|
*
|
2019-07-30 19:41:32 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2015-02-25 15:57:48 -05:00
|
|
|
*/
|
|
|
|
|
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);
|
|
|
|
});
|