added activity detection

This commit is contained in:
kazu
2016-04-21 08:56:15 +02:00
parent ecd34cf6d3
commit 6f0d56fbef
10 changed files with 210 additions and 18 deletions

View File

@@ -1,12 +1,17 @@
#ifndef MYCONTROL_H
#define MYCONTROL_H
#include "../lukas/Activities.h"
/** current control data for the transition step */
struct MyControl {
float walked_m = 0;
float headingChange_rad = 0;
Activity currentActivitiy = Activity::UNKNOWN;
};
#endif // MYCONTROL_H