Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update description of write method #93

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/Servo.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Servo
uint8_t attach(int pin); // attach the given pin to the next free channel, sets pinMode, returns channel number or INVALID_SERVO if failure
uint8_t attach(int pin, int min, int max); // as above but also sets min and max values for writes.
void detach();
void write(int value); // if value is < 200 its treated as an angle, otherwise as pulse width in microseconds
void write(int value); // if value is < 544 and desired arch is not nrf52, its treated as an angle between 0 and 180, where values higher than 180 are set to 180 and values less than 0 are set to 0; otherwise as pulse width in microseconds
void writeMicroseconds(int value); // Write pulse width in microseconds
int read(); // returns current pulse width as an angle between 0 and 180 degrees
int readMicroseconds(); // returns current pulse width in microseconds for this servo (was read_us() in first release)
Expand Down
2 changes: 1 addition & 1 deletion src/avr/Servo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ void Servo::detach()
void Servo::write(int value)
{
if(value < MIN_PULSE_WIDTH)
{ // treat values less than 544 as angles in degrees (valid values in microseconds are handled as microseconds)
{
if(value < 0) value = 0;
if(value > 180) value = 180;
value = map(value, 0, 180, SERVO_MIN(), SERVO_MAX());
Expand Down
1 change: 0 additions & 1 deletion src/mbed/Servo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ void Servo::detach()

void Servo::write(int value)
{
// treat values less than 544 as angles in degrees (valid values in microseconds are handled as microseconds)
if (value < MIN_PULSE_WIDTH)
{
if (value < 0)
Expand Down
1 change: 0 additions & 1 deletion src/megaavr/Servo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ void Servo::detach()

void Servo::write(int value)
{
// treat values less than 544 as angles in degrees (valid values in microseconds are handled as microseconds)
if (value < MIN_PULSE_WIDTH)
{
if (value < 0)
Expand Down
1 change: 0 additions & 1 deletion src/sam/Servo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ void Servo::detach()

void Servo::write(int value)
{
// treat values less than 544 as angles in degrees (valid values in microseconds are handled as microseconds)
if (value < MIN_PULSE_WIDTH)
{
if (value < 0)
Expand Down
1 change: 0 additions & 1 deletion src/samd/Servo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ void Servo::detach()

void Servo::write(int value)
{
// treat values less than 544 as angles in degrees (valid values in microseconds are handled as microseconds)
if (value < MIN_PULSE_WIDTH)
{
if (value < 0)
Expand Down