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

@ -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 ##