Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ssloy/penny.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Sokolov <ssloy@users.noreply.github.com>2020-02-19 16:38:19 +0300
committerGitHub <noreply@github.com>2020-02-19 16:38:19 +0300
commit60296bfff422f194f732817aed93ef0f4f1501c1 (patch)
tree4ec7eef1ef0e4e9dadb340e5f21e761a789ff72d
parent354d05fad409ff5071f884ac23297ef51a5f1c47 (diff)
Update README.md
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index d39b152..c8d7cc8 100644
--- a/README.md
+++ b/README.md
@@ -117,14 +117,15 @@ All the movements are planned as constant speed. To give an example, let us supp
* copy `pos[0]` to `pos_beg[0]`, it marks the starting point of the movement;
* set `pos_end[0]` to the desired position (still in degrees);
* set `time_start[0]` to the current timestamp (milliseconds since the boot);
-* and, finally, set `duration[0]` (in seconds). That is, the speed will be (pos_end[0]-pos_beg[0])/duration[0] degrees/sec.
+* and, finally, set `duration[0]` (in seconds). That is, the speed will be `(pos_end[0]-pos_beg[0])/duration[0]` degrees/sec.
Then in an endless loop I invoke `movement_planner()`, it sets the goal `pos[]` according to the plan, and `update_servo_timers()` to update the PWM generator according to the `pos[]` position.
+## Gait sequences
Note that all movement planner variables are stored in 3-element arrays, thus the movements (including the speeds) can be independent one from another.
Despite that, my current gait implementation uses synchronized movements of all three servos.
-## Gait sequences
+
## Obstacle detection