Starter Activity Instructions: Complete the starter sheet Planner

Slides:



Advertisements
Similar presentations
Bug Session One. Session description In this session, pupils are introduced to a programming sequence which will make a light pattern on their Bug. Objectives.
Advertisements

How to get started with Excel VBA. We need to enable programming in Excel  the “Developer menu”
Bug Session Two. Session description In this session the use of algorithms is reinforced to help pupils plan out what they will need to program on their.
Bug Session One. Session description In this session, pupils are introduced to a programming sequence which will make a light pattern on their Bug. Objectives.
Scratch the Cat. Object Oriented Programing Writing computer programs Based on Objects Instead of Actions Based on Data Instead of Logic.
Scratch Internet- Open Chrome hit “Create” 1.
Introducing Scratch the Cat
Learning the skills for programming Advanced Visual Programming.
1 Understand how to use Scratch to: – Animate a sprite – Add sound to your script – Use the forever command to create a loop Lesson 2: Learning Objectives.
How to get started with Excel VBA. We need to enable programming in Excel  the “Developer menu”
Introduction to Scratch. What is Scratch? Scratch is a control program that enables you to create your own interactive stories, animations, games, music,
BBC Microbit Getting set up and making your first program.
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
Welcome to Scratch By Miss Key. The Main Screen Viewing screen with choice of views.
Introducing Scratch Learning resources for the implementation of the scenario
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.
Lesson 4 Accelerometer.
Scratch Programming Cards
Class-Level Variables in Alice
Starter What is BBC micro:bit?
Scratch Helicopter Game
Create a Halloween Computer Game in Scratch
Bbc microbit Lesson 3 – Temperature hot medium.
Lesson 1 – Getting to know your Microbit
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.
@TeacherToolkit, license CC BY-NC-ND 3.0
Learning Objective: to be able to design programs that use sequencing.
Changing Color, Using Text Objects, and Random Selection in Alice
Unit 2 Getting Started With
Learning Java with Alice 3.0 Game Design Kathy Bierscheid
BBC Microbit.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
BBC Microbit.
BBC Microbit.
Introduction to Object-Oriented Programming
BBC Microbit.
Stopwatch Cards Stopwatch Cards
Drawing Two-Dimensional Shapes with Digital Technology
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
Explain what touch develop is to your students:
Objective of the lesson
Lesson 4 Accelerometer.
Go to =>
BBC Microbit.
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
BBC Microbit.
And and or…and RANDOMNESS
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Game Controller Lesson Two.
Go to =>
Go to =>
Stopwatch Cards Stopwatch Cards
Go to =>
Lesson 2.
Stopwatch Cards Stopwatch Cards
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
BBC Microbit.
Stopwatch Cards Stopwatch Cards
Game development using Scratch
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Creating a Simple Game in Scratch
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Stopwatch Cards Stopwatch Cards
Lesson 1 – using the LED lights
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Pen Cards Pen Cards Back and Forth Draw a Line Special Effects
Objective of the lesson
Stopwatch Cards Stopwatch Cards
Presentation transcript:

Starter Activity Instructions: Complete the starter sheet Planner Stationary Bags Away Instructions: Complete the starter sheet Colour in the squares so that they match coordinates http://www.classtools.net/random-name-picker/63_jBYccc List all the hardware and software you can think off Explain the difference between input and output device Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Objectives All learn how to show LEDs on the LED screen Most learn how to run code when an input button is pressed Learn the function of the accelerometer Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Smiley face You are going to create pictures using the LEDs. Step 1 – go onto www.microbit.co.uk Click create code: Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

TASK1 - Smiley face Drag out a show LED block from the basic tab. Tick the boxes to make a smiley face Press run to see what happens on the onscreen Microbit. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Objectives All learn how to show LEDs on the LED screen Most learn how to run code when an input button is pressed Learn the function of the accelerometer Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Task 2 – winking smiley face Drag out one more show LED block with a normal smiley face and press run to see what happens now. Drag out another show LED block with a winking face and press run to see what happens. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Task 2 - smiley face Go into the input tab and drag out a ‘on button A pressed do’. Drag this block and wrap around the 3 show LED blocks and run this. This time you will need to press the A button on the onscreen Microbit. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Extension Program so that when the B button is pressed your microbit goes from happy to sad to really sad. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Objectives All learn how to show LEDs on the LED screen Most learn how to run code when an input button is pressed Learn the function of the accelerometer Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Lets code another program. Click on New project on the Microsoft Block Editor box. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Microbit, Variable

Lets code our another program. Rename your project “DICE” On the left are your code blocks, just like scratch they are split into sections and different colours. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Lets code another program. Open up the input tab and drag into your script area on shake do. We then need to create a variable and call it roll. Insert the for green loop block and click the drop down menu and select new variable call it roll Insert a match block picking a random number and drop this in the 2nd loop box and change the range to 6. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Lets code another program. Then insert a if logic box with a maths 0=0 block with a basic show LED block underneath You then need to insert the variable roll into the first equals statement and then a 1 into the second equals statement. Then draw out a 1 ticking the boxes you would like to light up. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Lets code another program. Right click the if statement and duplicate (just like scratch and put underneath the IF block. Change the 2nd number to say 2 and change the ticks so that a 2 will light up. Keep doing this for all 6 numbers. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Lets code another program. Then press compile. Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable

Objectives All learn how to show LEDs on the LED screen Most learn how to run code when an input button is pressed Learn the function of the accelerometer Keywords: Buttons, Hardware, Software, Input, Output, Accelerometer, Micro:bit, Variable