Project

General

Profile

Statistics
| Branch: | Revision:

robobuggy / arduino / RCbuggyMega / brake.h @ 0c873a67

History | View | Annotate | Download (320 Bytes)

1
/**
2
 * @file brake.h
3
 * @author Audrey Yeoh (ayeoh)
4
 * @author Matt Sebek (msebek)
5
 *
6
 * Initializes, raises, drops, and gets-state of
7
 * the brakes.
8
 *
9
 */
10
#ifndef _BRAKE_H_
11
#define _BRAKE_H_
12

    
13
  void brake_init(int brakePin, int indicatorLedPin);
14

    
15
  void brake_raise();
16

    
17
  void brake_drop();
18

    
19
#endif