Vibratingmotorh

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

#ifndef VibratingMotor_H

#define VibratingMotor_H

// the common headers for C99 types


#include <stdint.h>
#include <stdbool.h>

// Event Definitions
#include "ES_Configure.h" /* gets us event definitions */
#include "ES_Types.h" /* gets bool type for returns */

// Public Function Prototypes


bool InitializeVibratingMotor ( uint8_t Priority );
bool PostVibratingMotor( ES_Event ThisEvent );
ES_Event VibratingMotor( ES_Event ThisEvent );

#endif

You might also like