blob: 5ec1869ae9632cc2fd50bafefe5560517e34eb45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MOTORMIXER_H
#define MOTORMIXER_H
#include <stdint.h>
class MotorMixer {
public:
void start();
void update(int16_t thrust, int16_t pitch, int16_t roll, int16_t yaw);
};
#endif
|