Skip to content
Parallax Learn

Parallax Learn

  • Welcome
  • Tutorials
        • Tutorial Series head tag

          Tutorial Series
        • Tutorial Series

          The special, classroom-ready series pages are organized collections of tutorials for our most popular hardware and/or languages. The tutorials for each topic are conveniently accessible from a single page, shown in the order it is recommended that they be completed.
        • Robotics Series Head tag

          Robotics Series
        • Robotics Series

          • Artificial Intelligence
          • Cybersecurity: Radio Data tutorialCybersecurity
          • cyber:bot + Python
          • cyber:bot + MakeCode
          • Boe-Bot Tutorial SeriesBoe-Bot
          • Arduino Shield-Bot
          • ActivityBot with C TutorialsActivityBot + C
          • ActivityBot with BlocklyProp Tutorial SeriesActivityBot + BlocklyProp
          • Scribbler 3 Tutorial SeriesScribbler 3
        • Electronics & Programming Series Head tag

          Electronics & Programming Series
          • BS2 Board of Education Tutorial SeriesBS2 Board of Education
          • Propeller C-Language BasicsPropeller C Basics
          • FLiP Try-It Kit C Tutorial SeriesFLiP Try-It Kit + C
          • FLiP Try-It Kit BlocklyProp TutorialsFLiP Try-It Kit + BlocklyProp
          • Badge WX Tutorial SeriesBadge WX
          • Propeller BlocklyProp Basics and ProjectsPropeller BlocklyProp Basics
          • View All Tutorial Series »
        • Browse Tutorials
        • Browse Tutorials

          Individual tutorials sorted by robot or kit, and language.
        • By Robot or Kit
          • ActivityBot
          • SumoBot WX
          • Boe-Bot
          • Shield-Bot
          • cyber:bot
          • Badge WX
          • ELEV-8
          • ARLO
        • By Language
        • By Language

          • Propeller C
          • Arduino
          • BlocklyProp
          • PBASIC
          • Python
          • MakeCode
          • View All Tutorials »
  • Educators
  • Reference
  • Downloads
  • Home
  • All Courses
  • Tilt-Control Gripper cyber:bot with Feedback 360° Servos

Tilt-Control Gripper cyber:bot with Feedback 360° Servos

Speed Control Script and Tests

Test Script

This script rolls forward for 0.5 seconds, picks up an object, rolls forward for another 1.25 seconds, sets down the object, backs up for 0.5 seconds, and then stops.

  • Right-click cyber_bot_gripper_forward_object_with_fb360.hex and select Save link as.

cyber_bot_gripper_forward_object_with_fb360.hex

  • Open it with the python.microbit.org/v/2 editor.

The script was created by entering the text below into the micro:bit Python Editor editor.  The cyberbot and feedback360 modules were also added to the Project Files as shown in Add modules to your micro:bit.  The Script Name was set to cyber_bot_gripper_forward_object_with_fb360 before saving it as a .hex file as shown in Save & Edit Scripts.

  • Plug the battery pack’s barrel plug into the cyber:bot board’s barrel jack.
  • Set the cyber:bot board’s PWR switch to 0.
  • Click Send to micro:bit.
  • Disconnect the USB from the cyber:bot robot’s micro:bit module.

Test script: cyber_bot_gripper_forward_object_with_fb360

# cyber_bot_gripper_forward_object_with_fb360

from cyberbot import *
from feedback360 import *

drive.connect()

display.show(Image.ARROW_E)

while True:
    if button_b.was_pressed():
        
        display.clear()

        bot(15).servo_angle(150)    # lower & open gripper
        sleep(1500)

        drive.speed(64, 64)         # Forward 0.5 s
        sleep(500)
        drive.speed(0, 0)
        sleep(1000)

        bot(15).servo_angle(30)     # Close gripper & lift
        sleep(1500)

        drive.speed(64, 64)         # Forward 1.25 s
        sleep(1250)
        drive.speed(0, 0)
        sleep(1000)

        bot(15).servo_angle(150)    # Lower & open gripper
        sleep(1500)

        drive.speed(-64, -64)       # Backward 0.5 s
        sleep(500)
        drive.speed(0, 0)
       
        display.show(Image.ARROW_E)

 

Tests

Feedback 360° servos correct to match each other’s speed, so there is no need to adjust for speed differences that would cause significant curving in the navigation.  That is only a symptom of non-feedback continuous rotation servos.  That isn’t to say that there will be no curving at all, but any curving you observe is going to more likely be a result of things like slop in the angle of the servo’s output spline, subtle bends in the chassis, and slight slippages accumulating over distances.

  • Set the PWR switch to 2.
  • Press/release the micro:bit module’s B button and verify that:
    • The cyber:bot rolls forward half a second and then stops.
    • The Gripper closes and lifts.
    • The cyber:bot rolls forward for another 1.25 seconds and then stops.
    • The Gripper sets down and releases.
    • The cyber:bot rolls backward for a half a second, then stops again.
  • When you are done, set the cyber:bot board’s PWR switch to 0 to conserve battery power.  

 


Printer-friendly version
Go and Get an Object with Speed Control
Prev
How the Speed Control Works
Next

DISCUSSION FORUMS | PARALLAX INC. STORE

About | Terms of Use | Feedback: learn@parallax.com | Copyright©Parallax Inc. 2024

© 2025 Parallax Learn • Built with GeneratePress