Servoservice H
Servoservice H
#define ServoService_H
// Event Definitions
#include "ES_Configure.h" /* gets us event definitions */
#include "ES_Types.h"
/* gets bool type for returns */
// typedefs for the states
// State definitions for use with the query function
typedef enum {Servo_Idle, Servo_Wind, Servo_Grow, Servo_Construction,
Servo_Reset} SSState_t;
// Public Function Prototypes
bool ServoSInit(uint8_t Priority);
bool PostServoS(ES_Event ThisEvent);
ES_Event RunServoS(ES_Event ThisEvent);
#endif /* ServoService_H */