mirror of
https://github.com/modelec/pami.git
synced 2026-03-18 21:40:35 +01:00
INIT PAMI 2026
This commit is contained in:
18
include/Servo.h
Normal file
18
include/Servo.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user