- Remove broken image references from 25 MDX files (deleted spacer/content images) - Add codingSkills and roverConcepts frontmatter to 24 activity pages - Fix "Activity Demonstration" headings in 15 activity files (plain text -> h3) - Remove unused "All" category from 89 MDX files - Decode HTML entities (> < ) in 9 content files - Escape bare < > characters in MDX to fix build errors - Standardize contact email to contact@micromelon.com.au - Add missing description to rover-repair-request metadata - Include previous session work: about-us updates, difficulty filtering, LearningPathway component, expanded schools list, new product/resource images Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
2.7 KiB
Plaintext
48 lines
2.7 KiB
Plaintext
---
|
||
title: "Activity: Balance Bot"
|
||
date: "2021-06-04"
|
||
categories: ["Activities", "Simulator Activities"]
|
||
tags: ["Iteration", "Algorithm Design", "Accelerometer", "Motors", "Maths", "Advanced"]
|
||
codingSkills: ["Iteration", "Algorithm Design", "Maths"]
|
||
roverConcepts: ["Accelerometer", "Motors"]
|
||
excerpt: "Learn iteration, algorithm design, maths, and how to use the Rover’s accelerometer and motors."
|
||
featuredImage: "/images/resources/balance-bot.png"
|
||
---
|
||
|
||
|
||
Challenge students to program their rover to always try and stabilise itself. When complete, the rover will always turn and drive upwards on any tilted surface. Once the surface the robot is driving on is flat, it should stop moving. This means the robot will balance on a seesaw. Students will need to use data from the accelerometer to control the motors based on the orientation of the rover.
|
||
|
||
### Activity Demonstration
|
||
|
||
<iframe width="560" height="315" src="https://www.youtube.com/embed/X428Usiv-qY" title="Balance Bot Activity Demonstration" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen></iframe>
|
||
|
||
### Setup
|
||
|
||

|
||
|
||
We use a large hard cover book for this challenge as a platform. Any flat surface that can be moved and tilted will work. When the object is tilted the rover should move up the surface in an attempt to stabilize. When the surface is flat the rover has found balance and will not move.
|
||
|
||
For this exercise you can also use a seesaw style balance board or a circular wobble board. We use a seesaw board build from 2 pieces of wood as pictured.
|
||
|
||
### Here’s Our Approach
|
||
|
||

|
||
|
||
Example Code (single axis balancing)
|
||
|
||
#### Stage 1
|
||
|
||
Using an IF statement block, we can check if the x axis of the accelerometer is above or below zero. If its above, we can use a motor block to move forward, otherwise we can use the motor block to move backwards.
|
||
|
||
#### **Stage 2**
|
||
|
||
To make the rover move smoothly and make fine adjustments, we can use the scale number block to scale the X axis between -1 and 1 to -30 and 30 for the motor block.
|
||
|
||
#### **Stage 3**
|
||
|
||

|
||
|
||
Example Code (multi-axis balancing)
|
||
|
||
To make the program also work for a circular board we need to also take into account the Y axis of the accelerometer. We can use the same scale number block to create a variable called rotation, which we can include in our motor block. Since our speed variable determines the speed the motors move forward or back, the rotation modifier needs a + or - sign. We need this sign because the robot rotates by making its tracks move in opposite directions.
|