mirror of
https://github.com/eclipse/upm.git
synced 2025-07-02 01:41:12 +03:00
Grove: Reverting Grove sources
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
5
src/grovegsr/CMakeLists.txt
Normal file
5
src/grovegsr/CMakeLists.txt
Normal file
@ -0,0 +1,5 @@
|
||||
set (libname "grovegsr")
|
||||
set (libdescription "upm grovegsr galvanic skin response sensor module")
|
||||
set (module_src ${libname}.cxx)
|
||||
set (module_hpp ${libname}.hpp)
|
||||
upm_module_init()
|
70
src/grovegsr/grovegsr.cxx
Normal file
70
src/grovegsr/grovegsr.cxx
Normal file
@ -0,0 +1,70 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
|
||||
#include "grovegsr.hpp"
|
||||
|
||||
using namespace upm;
|
||||
using namespace std;
|
||||
|
||||
GroveGSR::GroveGSR(int pin)
|
||||
{
|
||||
if ( !(m_aio = mraa_aio_init(pin)) )
|
||||
{
|
||||
throw std::invalid_argument(std::string(__FUNCTION__) +
|
||||
": mraa_aio_init() failed, invalid pin?");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
GroveGSR::~GroveGSR()
|
||||
{
|
||||
mraa_aio_close(m_aio);
|
||||
}
|
||||
|
||||
void GroveGSR::calibrate()
|
||||
{
|
||||
sleep(1);
|
||||
int val, threshold, sum = 0;
|
||||
|
||||
for(int i=0; i<500; i++)
|
||||
{
|
||||
val = mraa_aio_read(m_aio);
|
||||
if (val != -1) throw std::runtime_error(std::string(__FUNCTION__) +
|
||||
": Failed to do an aio read.");
|
||||
sum += val;
|
||||
usleep(5000);
|
||||
}
|
||||
threshold = sum / 500;
|
||||
cout << "Threshold = " << threshold << endl;
|
||||
}
|
||||
|
||||
int GroveGSR::value()
|
||||
{
|
||||
int val = mraa_aio_read(m_aio);
|
||||
return val;
|
||||
}
|
84
src/grovegsr/grovegsr.hpp
Normal file
84
src/grovegsr/grovegsr.hpp
Normal file
@ -0,0 +1,84 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <mraa/aio.h>
|
||||
|
||||
namespace upm {
|
||||
/**
|
||||
* @brief Grove GSR Galvanic Skin Response Sensor library
|
||||
* @defgroup grovegsr libupm-grovegsr
|
||||
* @ingroup seeed analog electric
|
||||
*/
|
||||
|
||||
/**
|
||||
* @library grovegsr
|
||||
* @sensor grovegsr
|
||||
* @comname Grove GSR Sensor
|
||||
* @type electric
|
||||
* @man seeed
|
||||
* @con analog
|
||||
*
|
||||
* @brief API for the Grove GSR Galvanic Skin Response Sensor
|
||||
*
|
||||
* Measures the electrical conductance of skin
|
||||
* to measure strong emotional reactions.
|
||||
* In other words, it measures sweat on your fingers
|
||||
* as an indicator of strong emotional reactions.
|
||||
*
|
||||
* @image html grovegsr.jpg
|
||||
* @snippet grovegsr.cxx Interesting
|
||||
*/
|
||||
class GroveGSR {
|
||||
public:
|
||||
/**
|
||||
* Grove GSR sensor constructor
|
||||
*
|
||||
* @param pin Analog pin to use
|
||||
*/
|
||||
GroveGSR(int pin);
|
||||
/**
|
||||
* GroveGSR destructor
|
||||
*/
|
||||
~GroveGSR();
|
||||
|
||||
/**
|
||||
* Calibrates the Grove GSR sensor
|
||||
*/
|
||||
void calibrate();
|
||||
|
||||
/**
|
||||
* Gets the electrical conductance of the skin from the sensor
|
||||
*
|
||||
* @return Electrical conductance of the skin
|
||||
*/
|
||||
int value();
|
||||
|
||||
private:
|
||||
mraa_aio_context m_aio;
|
||||
};
|
||||
}
|
||||
|
||||
|
19
src/grovegsr/javaupm_grovegsr.i
Normal file
19
src/grovegsr/javaupm_grovegsr.i
Normal file
@ -0,0 +1,19 @@
|
||||
%module javaupm_grovegsr
|
||||
%include "../upm.i"
|
||||
|
||||
%{
|
||||
#include "grovegsr.hpp"
|
||||
%}
|
||||
|
||||
%include "grovegsr.hpp"
|
||||
|
||||
%pragma(java) jniclasscode=%{
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("javaupm_grovegsr");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
System.err.println("Native code library failed to load. \n" + e);
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
%}
|
8
src/grovegsr/jsupm_grovegsr.i
Normal file
8
src/grovegsr/jsupm_grovegsr.i
Normal file
@ -0,0 +1,8 @@
|
||||
%module jsupm_grovegsr
|
||||
%include "../upm.i"
|
||||
|
||||
%{
|
||||
#include "grovegsr.hpp"
|
||||
%}
|
||||
|
||||
%include "grovegsr.hpp"
|
11
src/grovegsr/pyupm_grovegsr.i
Normal file
11
src/grovegsr/pyupm_grovegsr.i
Normal file
@ -0,0 +1,11 @@
|
||||
// Include doxygen-generated documentation
|
||||
%include "pyupm_doxy2swig.i"
|
||||
%module pyupm_grovegsr
|
||||
%include "../upm.i"
|
||||
|
||||
%feature("autodoc", "3");
|
||||
|
||||
%include "grovegsr.hpp"
|
||||
%{
|
||||
#include "grovegsr.hpp"
|
||||
%}
|
Reference in New Issue
Block a user