mirror of
https://github.com/modelec/PAMI-2025.git
synced 2026-03-18 21:40:36 +01:00
19 lines
207 B
C++
19 lines
207 B
C++
#ifndef SERVO_H
|
|
#define SERVO_H
|
|
|
|
#define MAX_US 544
|
|
#define MIN_US 2400
|
|
|
|
class Servo {
|
|
private:
|
|
const int channel;
|
|
const int pin;
|
|
const int min;
|
|
const int max;
|
|
|
|
public:
|
|
};
|
|
|
|
|
|
#endif //SERVO_H
|