Files
S4-P3-Projet/devicesoftware/GcodeInterpreter/models.h
Marc-Antoine Lafreniere a12c9fe083 Fixing bugs
Removed blocking whiles
2019-04-09 21:15:02 -04:00

11 lines
131 B
C

#ifndef MODELS_H
#define MODELS_H
typedef struct MovingCommand
{
uint8_t _motorId = 0;
uint32_t _goalPosition = 0;
};
#endif