Cubic Hand project for EECS 249A course.

Dependencies:   MMA8451Q TSI cc3000_hostdriver_mbedsocket NVIC_set_all_priorities mbed Multi_WS2811

Committer:
robertbui
Date:
Thu Dec 11 17:49:21 2014 +0000
Revision:
49:361833355173
Parent:
40:bdd949fc3bc2
Gesture parameters update.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
robertbui 39:e90071c1535a 1 #include "mbed.h"
robertbui 39:e90071c1535a 2 #include "CubeUpdateParameters.h"
robertbui 40:bdd949fc3bc2 3 #include "Glove.h"
robertbui 40:bdd949fc3bc2 4
robertbui 39:e90071c1535a 5 #pragma once
robertbui 39:e90071c1535a 6
robertbui 31:0e341d81ea00 7 class GestureRecognition
robertbui 31:0e341d81ea00 8 {
robertbui 31:0e341d81ea00 9 public:
robertbui 31:0e341d81ea00 10 GestureRecognition();
robertbui 31:0e341d81ea00 11 ~GestureRecognition();
robertbui 40:bdd949fc3bc2 12 CubeUpdateParameters sensorToGesture(Glove data);
robertbui 31:0e341d81ea00 13
robertbui 40:bdd949fc3bc2 14 private:
robertbui 40:bdd949fc3bc2 15 int counter;
robertbui 49:361833355173 16 int secondCounter;
robertbui 31:0e341d81ea00 17 };