This commit is contained in:
2021-05-07 15:41:47 +02:00
5 changed files with 19 additions and 0 deletions
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

+3
View File
@@ -2,15 +2,18 @@
#include "board_v10.h"
#include "motor.h"
#include "buttons.h"
#include "movement.h"
void setup() {
// put your setup code here, to run once:
initMotors();
initButtons();
initMovement();
}
void loop() {
// put your main code here, to run repeatedly:
handleMotors();
handleButtons();
handleMovement();
}
+12
View File
@@ -0,0 +1,12 @@
#include "movement.h"
#include "motor.h"
void handleMovement( void )
{
}
void initMovement( void )
{
}
+4
View File
@@ -0,0 +1,4 @@
#pragma once
void handleMovement( void );
void initMovement( void );