gsr: Added gsr sensor C source

Added the C source for the gsr sensor with necessary changes to cmake,
examples, docs.

    * Renamed all files with grovegsr to gsr
    * Replaced all instances of grovegsr with gsr
    * Added C source for gsr sensor
    * Updated all cmake files
    * Added C example for gsr sensor
    * Fixed C++ threshold method from throwing on a successfull aio read

Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
Noel Eck
2016-09-08 13:55:23 -07:00
parent a19678948b
commit 0e52ea619b
20 changed files with 547 additions and 81 deletions

View File

@ -171,7 +171,7 @@ add_example (grovecollision)
add_example (groveelectromagnet)
add_example (emg)
add_example (o2)
add_example (grovegsr)
add_example (gsr)
add_example (ina132)
add_example (l298)
add_example (l298-stepper)

View File

@ -25,7 +25,7 @@
#include <unistd.h>
#include <iostream>
#include <signal.h>
#include "grovegsr.hpp"
#include "gsr.hpp"
using namespace std;
@ -42,10 +42,10 @@ int main()
signal(SIGINT, sig_handler);
//! [Interesting]
// The was tested with the GroveGSR Galvanic Skin Response Sensor module.
// The was tested with the GSR Galvanic Skin Response Sensor module.
// Instantiate a GroveGSR on analog pin A0
upm::GroveGSR *gsr = new upm::GroveGSR(0);
// Instantiate a GSR on analog pin A0
upm::GSR *gsr = new upm::GSR(0);
cout << "Calibrating...." << endl;
gsr->calibrate();

View File

@ -98,6 +98,7 @@ add_example (vdiv)
add_example (mqx)
add_example (o2)
add_example (emg)
add_example (gsr)
# Custom examples
add_custom_example (nmea_gps_i2c-example-c nmea_gps_i2c.c nmea_gps)

86
examples/c/gsr.c Normal file
View File

@ -0,0 +1,86 @@
/*
* Author: Jon Trulson <jtrulson@ics.com>
* Copyright (c) 2016 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.
*/
#include <unistd.h>
#include <signal.h>
#include "gsr.h"
bool shouldRun = true;
void sig_handler(int signo)
{
if (signo == SIGINT)
shouldRun = false;
}
int main()
{
signal(SIGINT, sig_handler);
//! [Interesting]
// Instantiate a gsr sensor on analog pin A0
gsr_context sensor = gsr_init(0);
if (!sensor)
{
printf("gsr_init() failed.\n");
return -1;
}
// Set the aref, scale, and offset
gsr_set_aref(sensor, 5.0);
gsr_set_scale(sensor, 1.0);
gsr_set_offset(sensor, -.1);
printf("aRef: %0.03f scale: %0.03f offset: %0.03f\n\n",
gsr_get_aref(sensor),
gsr_get_scale(sensor),
gsr_get_offset(sensor));
// Every half a second, sample the sensor output
while (shouldRun)
{
float normalized = 0.0;
float raw_volts = 0.0;
float volts = 0.0;
gsr_get_normalized(sensor, &normalized);
gsr_get_raw_volts(sensor, &raw_volts);
gsr_get_volts(sensor, &volts);
printf("Normalized output: %0.03f, raw gsr sensor output: %0.03f v "
"adjusted output: %0.03f v\n", normalized, raw_volts, volts);
usleep(500000);
}
//! [Interesting]
printf("Exiting\n");
gsr_close(sensor);
return 0;
}

View File

@ -35,7 +35,7 @@ add_example(GroveButton_intrSample grove)
add_example(GroveCollision grovecollision)
add_example(GroveEHRSample groveehr)
add_example(Emg emg)
add_example(GroveGsr grovegsr)
add_example(Gsr gsr)
add_example(GroveLed_multiSample grove)
add_example(GroveLEDSample grove)
add_example(GroveLightSample grove)

View File

@ -22,16 +22,16 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import upm_grovegsr.GroveGSR;
import upm_gsr.GSR;
public class GroveGsr {
public class Gsr {
public static void main(String[] args) {
// TODO Auto-generated method stub
//! [Interesting]
// Instantiate a Grove GSR sensor on analog pin A0
GroveGSR gsr = new GroveGSR(0);
GSR gsr = new GSR(0);
System.out.println("Calibrating...");
gsr.calibrate();

View File

@ -22,18 +22,18 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
var grovegsr_lib = require("jsupm_grovegsr");
var gsr_lib = require("jsupm_gsr");
// The was tested with the GroveGSR Galvanic Skin Response Sensor module.
// The was tested with the GSR Galvanic Skin Response Sensor module.
// Instantiate a GroveGSR on analog pin A0
var grovegsr_obj = new grovegsr_lib.GroveGSR(0);
// Instantiate a GSR on analog pin A0
var gsr_obj = new gsr_lib.GSR(0);
console.log("Calibrating....");
grovegsr_obj.calibrate();
gsr_obj.calibrate();
var myInterval = setInterval(function()
{
console.log(grovegsr_obj.value());
console.log(gsr_obj.value());
}, 500);
@ -41,9 +41,9 @@ var myInterval = setInterval(function()
process.on('SIGINT', function()
{
clearInterval(myInterval);
grovegsr_obj = null;
grovegsr_lib.cleanUp();
grovegsr_lib = null;
gsr_obj = null;
gsr_lib.cleanUp();
gsr_lib = null;
console.log("Exiting...");
process.exit(0);
});

View File

@ -22,12 +22,12 @@
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import time, sys, signal, atexit
import pyupm_grovegsr as upmGrovegsr
import pyupm_gsr as upmGsr
# Tested with the GroveGSR Galvanic Skin Response Sensor module.
# Tested with the GSR Galvanic Skin Response Sensor module.
# Instantiate a GroveGSR on analog pin A0
myGSR = upmGrovegsr.GroveGSR(0)
# Instantiate a GSR on analog pin A0
myGSR = upmGsr.GSR(0)
## Exit handlers ##