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

Project Adjustments

Try This: Adjust the Response

The tilt controller might be a little too responsive, but slowing it down isn’t hard.  There are two facets to slowing it down.  

First, the “stay still” range where there’s no no  motion and the micro:bit displays a diamond can be extended from 80 to 200.  This will help prevent accidentally moving the cyber:bot when you press a button on the micro:bit tilt controller. 

Second, instead of dividing x and y tilts by 10 for a speed range of -100 to 100, you can divide them by 20 for half the speed range.  This is helpful especially when you are getting used to controlling the cyber:bot with the Gripper.

In radio_tilt_grip_controller:

    if abs(y) > 80:                        # Change from 80 to 200

 

In radio_tilt_grip_controlled_cyberbot:

            fb = y / 10                     # change divide by 20 instead of 10
            lr = x / 10                     # change divide by 20 instead of 10
…
            if abs(y) > 80:                 # change to if abs(y) > 200:

 

A dictionary with key-value pairs is a powerful way to organize data before exchanging it with another device.  That’s the main reason why it took so few extra Python statements to add gripper functionality to the existing Radio Tilt Controlled cyber:bot project. 

Your Turn: Have Fun!

Here are a few ideas for putting your Tilt Controlled Gripper cyber:bot with Feedback 360° servos to use and having some fun!

  • Using a grid of four pieces of poster board, place objects of two colors in random locations.  Then, draw boxes where the objects of each color should be sorted to.  After some practice, how far can you reduce your time?  In a class, this can even be a contest.
  • Create an oversize checker board, and grip-able cylinder checker pieces.  Use either one or two remote controlled cyber:bot robots to move the pieces.
  • If you have a 3-d printer, custom chess pieces on an oversize chessboard would also be an option.

 


Printer-friendly version
Tilt Control Tests
Prev

DISCUSSION FORUMS | PARALLAX INC. STORE

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

© 2025 Parallax Learn • Built with GeneratePress