You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ For instructions how to enable these alternatives, see [Compile options / macros
93
93
-**Float angels** are supported to allow **fine-grained servo control** comparable to using microseconds.
94
94
-**User-specified callback function at "servo arrived" enables movement control independent of main loop**.
95
95
-**Stop and resume** of servo movement.
96
-
-**Detach and reattach**. No servo signal is generated for a detached servo. Therefore, it is not blocked and can be moved manually.
96
+
-**Detach and reattach**. No servo signal is generated for a detached servo / the output is constant LOW. Therefore, it is not blocked and can be moved manually.
97
97
- A **trim value** can be set for any servo. Its value is internally added to each requested position.
98
98
-**Reverse operation** of servo is possible e.g. if it is mounted head down.
99
99
-**Constraints for minimum and maximum servo degree** can be specified. Trim and reverse are applied after constraint processing.
@@ -190,8 +190,8 @@ You can handle multiple servos simultaneously by [special functions](https://git
190
190
<br/>
191
191
192
192
# Initial movement of Servo
193
-
**Servos are buld to reach the target position as fast as possible.**
194
-
To achieve slow movement, this library gradually adjusts the target position,
193
+
**Servos are build to reach the target position as fast as possible.**
194
+
To achieve slow movement, this library gradually adjusts the target position,
195
195
and the servo attempts to respond to these changes as quickly as possible.
196
196
This creates the appearance of slow movement even when the servo reacts very quickly.<br/>
197
197
Initially, after powering on, the software has no information about the actual servo position!<br/>
@@ -448,6 +448,12 @@ This will print internal information visible in the Arduino *Serial Monitor* whi
448
448
<br/>
449
449
450
450
# Revision History
451
+
### Version 3.5.0
452
+
- Fixed serious bug in reattach();
453
+
- Renamed InitializeAndCheckI2CConnection() to initializeAndCheckI2CConnection().
454
+
- Renamed applyTrimAndreverseToTargetMicrosecondsOrUnits() to applyTrimAndReverseToTargetMicrosecondsOrUnits().
455
+
- Housekeeping.
456
+
451
457
### Version 3.4.0
452
458
- LightweightServo support for ATmega2560.
453
459
- Renamed `mCurrentMicrosecondsOrUnits` to `mLastTargetMicrosecondsOrUnits` to make clear, that trim and reverse is NOT applied to this value.
0 commit comments