1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// motors.h
//
#ifndef MOTORS_H_
#define MOTORS_H_
namespace Motors
{
/**
* Setup the Arduino as required.
*/
void setup();
/**
* Update the motor channels if it's time.
*/
void update_channels( int channels[] );
}
#endif //MOTORS_H_
|