SPQR-Team-2019-REVAMPED/src/main.cpp

19 lines
333 B
C++
Raw Normal View History

2019-10-09 14:59:27 +02:00
#include <Arduino.h>
2019-10-21 08:57:58 +02:00
#include "vars.h"
#include "data_source_bno055.h"
#include "drivecontroller.h"
#include "sensors.h"
2019-10-09 14:59:27 +02:00
2019-10-09 14:59:27 +02:00
void setup() {
2019-10-21 08:57:58 +02:00
DEBUG_PRINT.begin(9600);
initSensors();
2019-10-09 14:59:27 +02:00
}
void loop() {
updateSensors();
//should recenter using predefined values
2019-11-13 16:26:03 +01:00
drive->drive(0, 0, 0);
DEBUG_PRINT.println(compass->getValue());
2019-10-09 14:59:27 +02:00
}