Model-Based Team / Mbed 2 deprecated CubicHand

Dependencies:   MMA8451Q TSI cc3000_hostdriver_mbedsocket NVIC_set_all_priorities mbed Multi_WS2811

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GestureRecognition.h Source File

GestureRecognition.h

00001 #include "mbed.h"
00002 #include "CubeUpdateParameters.h"
00003 #include "Glove.h"
00004 
00005 #pragma once
00006 
00007 class GestureRecognition
00008 {
00009     public:
00010         GestureRecognition();
00011         ~GestureRecognition();
00012         CubeUpdateParameters sensorToGesture(Glove data);
00013         
00014     private:   
00015         int counter; 
00016         int secondCounter;
00017 };