SPQR-Team1-2020/src/main.cpp

29 lines
417 B
C++
Raw Normal View History

2019-10-09 14:59:27 +02:00
#include <Arduino.h>
2019-12-02 17:25:22 +01:00
#include "sensors.h"
#include "games.h"
2020-02-05 19:46:57 +01:00
#include "status_vector.h"
2019-12-05 12:53:14 +01:00
void setup() {
delay(1500);
2020-01-27 17:05:39 +01:00
DEBUG.begin(9600);
2020-02-05 19:46:57 +01:00
initStatusVector();
initSensors();
initGames();
delay(1500);
}
void loop() {
updateSensors();
2020-02-05 19:46:57 +01:00
goalie->play(role==1);
2020-01-22 18:51:30 +01:00
keeper->play(role==0);
2020-02-05 19:46:57 +01:00
// Last thing to do: movement and update status vector
drive->drivePrepared();
2020-02-05 19:46:57 +01:00
updateStatusVector();
}