Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Servo.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ class Servo
bool attached(); // return true if this servo is attached, otherwise false
private:
uint8_t servoIndex; // index into the channel data for this servo
int8_t min; // minimum is this value times 4 added to MIN_PULSE_WIDTH
int8_t max; // maximum is this value times 4 added to MAX_PULSE_WIDTH
int min; // minimum is this value times 4 added to MIN_PULSE_WIDTH
int max; // maximum is this value times 4 added to MAX_PULSE_WIDTH
};

#endif
Expand Down