ELEC50003-P1-CW/Control/include/instruction.h
Mee2001 34114e1b55 Fix UI range
Change colour to string
Fix distance counting
2021-06-15 12:57:28 +01:00

27 lines
380 B
C++

#ifndef INSTRUCTION_H
#define INSTRUCTION_H
#include <string>
typedef enum {
INSTR_RESET = -1,
INSTR_STOP,
INSTR_MOVE,
INSTR_CHARGE,
INSTR_WAIT,
INSTR_COLOUR
} instr_t;
typedef struct instruction
{
int id;
int instr;
int heading;
int distance;
float speed;
int charge;
int time;
String colour;
} RoverInstruction;
#endif