Objective of the lesson

Slides:



Advertisements
Similar presentations
SVHS TAKS Scores by Teachers Addressing the Objectives.
Advertisements

An Intro to Robots and Computer Programming
Meet Me on Mars Lesson 7 Variables and Messages. Events and Variables 1. Click the _________ button 2. When ________ clicked, set ______ to ____ 3. Now,
Bug Session Four. Session description Objectives Session activities summary Resources Prior knowledge of sequencing instructions using Bug Bug website.
Part A: How to Use the Flip Video Camera. Step 1 Turn on your Flip video camera by pushing the button on the left-hand side of the camera (when the lens.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech June 2008.
Making a Sprite Dance Barb Ericson Georgia Tech June 2011.
Create a Halloween Computer Game in Scratch Stephanie Smullen and Dawn Ellis Barb Ericson October 2008.
The If Block. IF The “if” block can be found in the control tab. The if block means, “IF this happens, THEN do this.” You can put blocks ON the if block.
How to use in outlook 365. Opening outlook 365 Firstly you want to click the windows button in the bottom left corner of your screen which will.
Introduction to Computer Programming - Project 2 Intro to Digital Technology.
How to create a sprite Delete a sprite (e.g. the cat) by right clicking on it and choosing delete. Go to the bottom right hand corner and choose a new.
How to create a sprite Delete a sprite (e.g. the cat) by right clicking on it and choosing delete. Go to the bottom right hand corner of the stage and.
The purpose of this PowerPoint is to explain how to open a Google Earth tour from MyPISD.
Creating a Simple Game in Scratch Barb Ericson Georgia Tech May 2009.
Creating your own Handheld Games Console
Objective of the lesson Use Blockly to make a dice for Snakes and Ladders All of you will: – Make an image which displays when you press a button Most.
Using MIT Scratch for Programming and Control Programming 9.
Scratch Programming Cards
Create a Halloween Computer Game in Scratch
Using the Lego Mindstorms Edu NXT Software
Scratch for Interactivity
micro:bit for primary schools – mb4ps.co.uk
Scratch Unit Overview We are going to look at computer programming and how to create your very own computer game The piece of software we will be using.
Powertap User Guide.
Programming Scratch to Control a K’NEX Fairground Ride
Objective of the lesson
MMoM - Lesson 4.
BBC Microbit.
BBC Microbit.
micro:bit for primary schools – mb4ps.co.uk
Stopwatch Cards Stopwatch Cards
Dance Cards Dance Cards
BBC Microbit.
BBC Microbit.
Dance Cards Dance Cards
BBC Microbit.
Dance Cards Dance Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
Enter your text here Enter your text here.
BBC Microbit.
Objective of the lesson
BBC Microbit.
Objective of the lesson
BBC Microbit.
BBC Microbit.
Objective of the lesson
Objective of the lesson
Introduction to scratch animation
Dance Cards Dance Cards
Stopwatch Cards Stopwatch Cards
Dance Cards Dance Cards
Blackboard Tutorial (Student)
Objective of the lesson
Stopwatch Cards Stopwatch Cards
Dance Cards Dance Cards
Stopwatch Cards Stopwatch Cards
Dance Cards Dance Cards
Dance Cards Dance Cards
Mod 2 Lesson 2 Repeating with loops
Creating a Simple Game in Scratch
Stopwatch Cards Stopwatch Cards
Lesson 1 – using the LED lights
Dance Cards Dance Cards
Objective of the lesson
Stopwatch Cards Stopwatch Cards
Dance Cards Dance Cards
Presentation transcript:

Objective of the lesson Use Blockly to add Scrolling Messages All of you will: Add a scrolling message on the LEDs Most of you will: Loop the messages Some of you will: Clear the screen and add pauses between messages

Go to www.codebug.org.uk Click on CREATE and then on the Blockly Tab You will see a simulation of the Codebug. The Triangular Play button can be used to run your program and view what will happen once you download to your Codebug

You will see a ‘start’ block. Leave this as it is. Display a scrolling message Firstly we will create a scrolling message using the 25 LEDS on the Codebug. This is called a Sprite Add a draw sprite block. Leave the xy as 0,0 (This means that the message will fit to the bottom left corner of the Codebug)

Add a get string sprite. Change the message to one of your own. Run the program by pressing the Play button

Downloading to the Codebug Click the Download button The program will download into your ‘Downloads’ folder Open the Downloads folder Click on the downloaded file and copy it Hold down the A button (Left hand button) on the Codebug as you plug in the USB The Codebug will be recognised. Paste the file onto the Codebug Click the B button (Right hand button) on the Codebug to run the program

Challenge Experiment with the string direction Experiment with the delay Experiment with the scroll direction Add a second message underneath

Add a repeat loop Run the program Experiment with changing the number of times the message repeats

We will now add the condition which is an If statement Add an ‘if button A is pressed’ do …. Add the scrolling program to the if do loop The program will now run forever but only if the button A is pressed

Challenge Make it so that the same message plays if the B button is pressed Make it so that a different message plays when the B button is pressed