//
// 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_
