Print

Snap!Decisions with the Finch

Lesson Key

Lesson key available for teachers.   Get Access

Finding Obstacles

In the last lesson, you were introduced to some of the sensor blocks for the Finch. In this lesson, you will learn to use those blocks to help the Finch make decisions about what it should do.

First, consider the Finch obstacle blocks, Finch Left Obstacle and Finch Right Obstacle. These blocks are Boolean blocks. This means that the value of the block is either true or false. If an object is in front of the right obstacle sensor, then the Finch Right Obstacle block is true. Otherwise, it is false. Each obstacle sensor can detect objects about 1-4 inches from the sensor.

Exercise 1:

Drag both obstacle blocks into the Scripts area. Click on each block when nothing is near the Finch. Both blocks should be false. Then try placing a cardboard box close to the Finch, first on the right side and then on the left. Verify that each obstacle block is true when that sensor is about 1-4 inches from the box.

You can use the obstacle blocks in an if else block. The if else block in Snap! is a decision block. It is found on the Control menu.

The if else block has spaces in the middle that can hold other Snap! blocks. In addition, the if else block contains a hexagonal space. This space requires a Boolean block. If the Boolean block is true, the program runs the blocks in the top of the if else. Otherwise, the program runs the blocks in the bottom of the if else. For example, the program below turns the Finch’s beak red when an object is close to the left sensor. Otherwise, the beak is green.

Exercise 2:

Try out the script shown above. When you press the spacebar, it will check the left obstacle sensor and turn the beak red or green.

The script above makes a decision each time you press the space bar. You may also want to repeat this decision over and over. Then the beak will turn red whenever something gets too close to the sensor. To do this, place the if then else block inside a forever loop.

Exercise 3:

Write a program that will make the Finch turn right when the left obstacle sensor detects an object. Otherwise, the Finch should move straight ahead.

Making Comparisons

The obstacle blocks are the only Finch blocks that are Boolean blocks. However, you can use the other sensor blocks to create Boolean blocks. You can do this using the three blocks shown below, which are found on the Operators menu. These are called comparison operators, or comparison blocks.

Create the Boolean block shown below. This block is true if the value of the left light sensor is less than 10, and false otherwise. The value that a Boolean block uses to make a decision is called the threshold. In this case, the threshold is 10.

Use the Finch Left Light Sensor block to measure the amount of light in your room. Then measure the value of the light sensor when you cover it with your hand. The average of these two values is a good threshold for the light sensor.

Exercise 4:

What do you think the script below will do? After you have made a hypothesis, test it out.

You should always use the < block or the > block with the Finch light, acceleration, and temperature blocks. The = block does not work well with these sensor blocks because the value of a sensor is rarely equal to a particular value. For example, the value of the light sensor might change from 52 to 49 to 51. A block checking whether the value is equal to 50 would be false for all of these values, but a block checking whether the value is greater 50 would detect the changes.

Exercise 5:

Write a program that makes the Finch buzz when the user turns the Finch upside down. Otherwise, the Finch should do nothing. This program should use one of the following blocks: Finch X Acceleration, Finch Y Acceleration, or Finch Z Acceleration.

Orientation of the Finch

In the last exercise, you had to use one of the acceleration blocks. There is also a Finch block called Finch Orientation. This block has one of seven values: Level, Beak Up, Beak Down, Left Wing Down, Right Wing Down, Upside Down, and In Between. Tilt the Finch in different directions and click on the Finch Orientation block to see the different values.

You can use the = block to check if the Finch Orientation block has a particular value. In fact, you must use the = block because the other blocks don’t make sense. What would it mean to be greater than “Beak Up”? The Boolean block below is true when the Finch’s left wing is down and false otherwise. The spaces between the words in “Left Wing Down” are shown by dots. You must include these spaces for the code to work.

Exercise 6:

Modify your program from the last exercise to use a Finch Orientation block to detect when the Finch is upside down. What changes do you need to make?

So far, you have only used Boolean blocks inside if and if else blocks. You can also use Boolean blocks inside a wait until block. This block stops the program until the Boolean statement in the wait until block is true. For example, the program below turns the Finch’s beak red and then waits until the left obstacle sensor detects an object. Then it turns the beak off.

Exercise 7:

What will happen if you run this script when there is already an object next to the left obstacle sensor? Try it and find out!

Exercise 8:

Write a program that makes the robot move in a large circle until it finds an area that is dark.

As you start to write programs that make decisions, you will notice that you need to think carefully before you begin to write a program. Planning a program carefully can save you from spending a lot of time debugging. Experienced programmers often draw a diagram (called a flowchart) of how a program will work or write out the steps that the robot will follow (this is called pseudocode).