Project

General

Profile

Statistics
| Branch: | Revision:

root / paintboard / code / motor.h @ c874b753

History | View | Annotate | Download (172 Bytes)

1
#ifndef _MOTOR_H_
2
#define _MOTOR_H_
3

    
4
void motor_init(void);
5
void set_motor1(int8_t speed);
6
void set_motor2(int8_t speed);
7
int8_t get_motor1();
8
int8_t get_motor2();
9

    
10
#endif