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

W:\_ME218bTeams\DoYouEvenStateMachine_Team17\ME218B\Final Project\CODE\Headers\DriveService.

h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

Page 1

/****************************************************************************
Header File
DriveService.h
Author
Anne Alter

Date
2/14/16
****************************************************************************/

#ifndef DriveService_H
#define DriveService_H

#include "ES_Types.h"
#include "ES_Configure.h"

//public function prototypes


void DriveForward(void);
void DriveForwardHalf(void);
void Reverse(void);
void AttackReverse(void);
void Stop(void);
void AttackTurn180(void);
void Turn180(void);
void Rotate(void);
void RotateBump(void);
#endif /* DriveService_H */

You might also like