Cubic Hand project for EECS 249A course.
Dependencies: MMA8451Q TSI cc3000_hostdriver_mbedsocket NVIC_set_all_priorities mbed Multi_WS2811
GestureRecognition.h@40:bdd949fc3bc2, 2014-12-11 (annotated)
- Committer:
- robertbui
- Date:
- Thu Dec 11 10:18:48 2014 +0000
- Revision:
- 40:bdd949fc3bc2
- Parent:
- 39:e90071c1535a
- Child:
- 49:361833355173
First attempt at full integration.
Who changed what in which revision?
User | Revision | Line number | New 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 | 31:0e341d81ea00 | 16 | }; |