Cubic Hand project for EECS 249A course.

Dependencies:   MMA8451Q TSI cc3000_hostdriver_mbedsocket NVIC_set_all_priorities mbed Multi_WS2811

Committer:
joseoyola
Date:
Mon Dec 15 23:55:15 2014 +0000
Revision:
56:f95ec9baa4cb
Parent:
49:361833355173
Changes to LedCube.h and LedCube.cpp; ; Renamed ledCube.h and ledCube.cpp to LedCube.h and LedCube.cpp, added documentation to both, added logic to move cube to allow changing size regardless of current position.

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 };