Changes between Version 88 and Version 89 of UserGuideGit


Ignore:
Timestamp:
Nov 22, 2017, 4:03:21 PM (8 years ago)
Author:
fma
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UserGuideGit

    v88 v89  
    1717The main parts of the framework are:
    1818
    19 * the '''robot''' itself;
    20 * the '''gait sequencer''';
    21 * one or more '''remote controllers'''.
     19* the '''robot''' itself, containing the IK engine (static implementation);
     20* the '''gait sequencer''', making the robot walk (dynamic implementation);
     21* one or more '''remote controllers''', allowing the control of the robot.
    2222
    2323[[Image(design_simple.png​, 300px)]]
    2424
    25 Each of these parts runs as separate thread. For now, the robot does nothing in its main loop, ans so, can be used for further devs (automatic stabilization...).
     25Each of these parts runs as separate thread. For now, the robot does nothing in its main loop, ans so, can be used for further devs (auto-leveling...).
    2626
    2727== Geometry definition ==
     
    155155[[Image(py4bot-gui-servocal.png, 300px)]]
    156156
    157 == !GaitSequencer and Gaits ==
    158 
    159 The {{{Gait}}}s and {{{GaitSequencer}}} implement the dynamic part of the movements, i.e. the gait itself. It computes the successive feet positions in order to make the robot walk.
     157== Gaits and !GaitSequencer ==
     158
     159The {{{Gait}}}s and {{{GaitSequencer}}} implement the dynamic part of the movements: they compute the successive feet positions in order to make the robot walk, and send them to the IK engine.
    160160
    161161[[Image(design_gait.png, 300px)]]