The Walking Creature ******************** Description: ============ The walking creature is a project that is programmed on the Raspberry Pi to walk on six legs. It lifts one side of its legs at one time in order to maintain forward movement. The walking creature is designed and constructed based on the engineering design process that is followed in the Coder-Maker program. Learning Objectives: ==================== The walking creature is an automated system that helps students learn and apply the following: - Coding, electronics, and physical science through a hands-on application that can be directly related to real life situations - Center of gravity and friction - The implementation of the engineering design process - Application of theoretical concepts to real life situations Materials Needed: ================= - Raspberry Pi with micro SD card and Raspbian - Two micro servo motors - Jumper wires - Breadboard - Bendable metal wires - Glue gun and glue sticks - Cutter blades or scissors - Thin sturdy cardboard (poster or portfolio cardboard) Setup and Functionality: ======================== The walking creature is a 30*20cm project that is made up of cardboard, 2 micro servo motors, and metal wires . It is able to move forward by the action of the 2 motors. One motor is attached to the front and back legs, which are synchronized, and the middle legs are operated by the action of the second micro servo motor. The front and back legs move forward and backward. This ensures forward movement only due to the action of the middle legs is to raise the side where the legs are moving forward to present the whole creature from moving in place. This will allow only the legs that are pushing forward to touch the floor. .. image:: _static/WalkingCreature/image2.png :align: center *Figure 1: Picture of a constructed Walking Creature* Circuitry and Electronics: ========================== The diagrams below show all the wiring and connections of all the componenets used in the walking creature: .. image:: _static/WalkingCreature/image3.png :align: center *Figure 2: Diagram of the Walking Creature* .. warning:: The micro servo motor does not consume much current and can be operated directly on the Raspberry Pi 6V power output. Make sure to use the same type of motor as other types might require a current that the Raspberry Pi cannot handle unless a transistor is added to the circuitry or an external power supply. Programming: ============ The walking creature is programmed using Python language: .. literalinclude:: ../examples/WalkingCreature/WalkingCreature.py .. include:: scienceConcepts/walkingCreaturePythonSC.rst