Settings menu works Movement working & TMP calibrated Tip reading sensibily Accuracy seems ok Trimmed down overshoot by biasing integral Saving to flash working, detailed idle Sleep mode Description scrolls Building for DFU working Motion detection update Use manual alg instead, using highpass filter, then sum current change vs rolling average Re-shuffle the pwm code organisation
11 lines
163 B
C++
11 lines
163 B
C++
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
#include <MMA8652FC.hpp>
|
|
#include "Setup.h"
|
|
#include "OLED.hpp"
|
|
|
|
extern OLED lcd;
|
|
extern MMA8652FC accel;
|
|
|
|
#endif /* __MAIN_H */
|