Mr Archer
Mr Archer
  • 44
  • 24 235
micro:bit S02 - 01 - Four Button Bash
Four Button Bash
⛑️A memory game where the player needs to watch a sequence and input the same sequence which gets harder after each level
PROJECT FOCUS - Buttons
👍Simple push button switches
👍How buttons work electrically
👍How button presses are detected by the micro:bit
👍Using buttons that start high or low
EQUIPMENT
🛠️4 push buttons switches (momentary operation, normally open, SPST switches. Put more simply, they are the most common push button switches available. The small ones usually have 4 metal connections. They spring back up when you take your finger off.)
🛠️Soldering iron and associated equipment (at least solder... easier with solder flux, cleaning sponge, helping hands)
🛠️Wire (about 1m of 22 AWG single core wire)
🛠️Card for the case
💻micro:bit V1 or V2
💻USB type A to micro USB cable
💻Internet connected device with USB type A socket
GENERAL INFO ABOUT THESE PROJECTS
🌍use a variety of different electronic components with the micro:bit
🌍use the Microsoft MakeCode editor
🌍use a micro:bit version 1 mostly (which means a version 2 is compatible too)
🌍use the block code editor (rather than the JavaScript or Python editors)
🌍use common stationary and craft equipment (e.g. pencils, rulers, scissors, sticky tape, masking tape, PVA glue, mat)
มุมมอง: 62

วีดีโอ

Body part word uses - 2 - The Nose
มุมมอง 152 หลายเดือนก่อน
Many complex words have single meanings, while many simple words have many different meanings. Let's explore many ways we can use some body part words in English.
Body part word uses - 1 - The Eye
มุมมอง 172 หลายเดือนก่อน
Many complex words have single meanings, while many simple words have many different meanings. Let's explore many ways we can use some body part words in English.
Acid-alkali indicator from dry leaves?
มุมมอง 563 หลายเดือนก่อน
Tree leaves are normally full of the pigment chlorophyll which makes them look green. When tree leaves dry in the autumn they break down their chlorophyll. The remaining chemicals are what give leaves their yellow, orange, red and brown colours. Anthocyanins are some of these other chemicals. These chemicals are in many plants, and often give plants a darker red, purple or black colour. For exa...
micro:bit - 10 - Pixel Dodge (part 2 of 2)
มุมมอง 513 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Pixel Dodge (part 2 of 2) ⛑️A game where the player needs to dodge falling pixels over 3 levels earning points for every dodged pixel Summary of this episode 👍Incrementing each value in an array after each tick of the game clock efficiently (i.e. not trying to plot pixels which won't be seen) 👍Making an accurate game clock to control the length of each le...
micro:bit - 10 - Pixel Dodge (part 1 of 2)
มุมมอง 1243 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Pixel Dodge (part 1 of 2) ⛑️A game where the player needs to dodge falling pixels over 3 levels earning points for every dodged pixel Summary of this episode 👍Using arrays to store the positions of many pixels 👍Having a score 👍Making a player which can move left and right Equipment used here 🛠️micro:bit V1 🛠️USB type A to micro USB 🛠️Internet connected de...
micro:bit - 09 - Drop Pixel (v2)
มุมมอง 1585 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Drop Pixel ⛑️A game where the player needs to fill the bottom row with lit LEDs Summary of this episode 👍Making animations by controlling individual LEDs (i.e. the apparent movement of a pixel across or down) 👍Using an array to remember which LEDs have been lit 👍Using functions to control different part of the game (e.g. moving the top pixel) 👍Using loops...
micro:bit - 08 - Button control LEDs
มุมมอง 986 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Button control LEDs ⛑️Control the lighting and putting out of LEDs in the 25-LED matrix with the buttons Summary of this episode 👍Using loops to create larger arrays 👍Using for loops and indexes to process information in an array 👍Understanding x and y coordinates for the LED matrix (and so all graphical computing) 👍Converting 1 row of data (in an array) ...
micro:bit - 07 - Random Animal
มุมมอง 556 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Random Animal ⛑️Create a game which randomly chooses and displays the name of an animal Summary of this episode 👍Setting up a text array 👍Understanding how information is addressed in an array with indexes 👍Using a variable to automatically know the length of an array (because the length may change, e.g. add more animal names in our case) 👍Testing on the ...
micro:bit - 06 - Roulette
มุมมอง 907 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Roulette ⛑️Create a roulette game (random chance to win or lose) using the random block and functions to organise the code Summary of this episode 👍Making an animation (on the 25-LED matrix) 👍Using the random block 👍Introducing functions 👍Using the MakeCode simulator to test a program Equipment used here 🛠️micro:bit V1 🛠️USB type A to micro USB 🛠️Internet...
micro:bit - 05 - Radio Love
มุมมอง 807 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Radio Love ⛑️Use the radio capability to send a question to another micro:bit, to send back an answer and to process that answer Summary of this episode 👍Using the radio blocks 👍Making 2 different programs that interact 👍Using conditional statements to process replies 👍Understanding that strings and numbers are treated as different Equipment used here 🛠️m...
micro:bit - 04 - Button Mash
มุมมอง 967 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Button Mash ⛑️A game where the player has to press the B button as many times as they can within a certain amount of time Summary of this episode 👍Control what's happening at any particular time (using a game state variable) 👍Using logic checks (if, else if, else statements; comparisons) 👍Writing comments in the code 👍Measuring a time difference 👍Giving d...
micro:bit - 03 - Counter
มุมมอง 897 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Counter ⛑️Use the buttons to increase or decrease a number shown on the 25-LED matrix Summary of this episode 👍Setting up a variable 👍Incrementing (and decrementing) a variable 👍Using pause and understanding the small pause micro:bit does when displaying something 👍Using a battery pack (or USB power bank) Equipment used here 🛠️micro:bit V1 🛠️USB type A to...
micro:bit - 02 - Temperature Bar
มุมมอง 687 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Temperature Bar ⛑️Display a bar on the 25-LED matrix that shows how hot the room is Summary of this episode 👍How to use logic blocks (if... else if... else) 👍How to use maths blocks in a logic test (testing does a = b) 👍How manually activate code (using the buttons) 👍How to automatically run code (using the forever block) Equipment used here 🛠️micro:bit V...
micro:bit - 01 - Shake Smile
มุมมอง 1857 หลายเดือนก่อน
BBC micro:bit Program Projects Project: Shake Smile ⛑️Make a sad face on the 25-LED matrix that smiles after you shake the micro:bit Summary of this episode 👍Basics of using a BBC micro:bit 👍Basics of using the Microsoft MakeCode editor 👍How to download your programs to the micro:bit 👍How to interact with your micro:bit Equipment used here 🛠️micro:bit V1 🛠️USB type A to micro USB 🛠️Internet con...
Electrolysis - Experiment and Predicting Products
มุมมอง 2137 หลายเดือนก่อน
Electrolysis - Experiment and Predicting Products
Autumn and trees losing their leaves
มุมมอง 229 หลายเดือนก่อน
Autumn and trees losing their leaves
Yim Tin Tsai Saltpans - Separating salt from water
มุมมอง 2383 ปีที่แล้ว
Yim Tin Tsai Saltpans - Separating salt from water
Google Sheets - making a graph
มุมมอง 1493 ปีที่แล้ว
Google Sheets - making a graph
What's in the water?
มุมมอง 2893 ปีที่แล้ว
What's in the water?
Natural pH Indicator - Red Apple Skin (part 3 of 3)
มุมมอง 2K4 ปีที่แล้ว
Natural pH Indicator - Red Apple Skin (part 3 of 3)
Natural pH Indicator - Red Apple Skin (part 2 of 3)
มุมมอง 4.5K4 ปีที่แล้ว
Natural pH Indicator - Red Apple Skin (part 2 of 3)
Natural pH Indicator - Red Apple Skin (part 1 of 3)
มุมมอง 5K4 ปีที่แล้ว
Natural pH Indicator - Red Apple Skin (part 1 of 3)
Experiment: Using Universal Indicator Solution on some Common Household Substances
มุมมอง 2.1K4 ปีที่แล้ว
Experiment: Using Universal Indicator Solution on some Common Household Substances
Ray diagrams with thin converging and diverging lenses
มุมมอง 574 ปีที่แล้ว
Ray diagrams with thin converging and diverging lenses
Earthing Electricity at SPCS (Part 3: Earthing the sky)
มุมมอง 1824 ปีที่แล้ว
Earthing Electricity at SPCS (Part 3: Earthing the sky)
Earthing Electricity at SPCS (Part 2: Searching for earth)
มุมมอง 1064 ปีที่แล้ว
Earthing Electricity at SPCS (Part 2: Searching for earth)
Earthing Electricity at SPCS (Part 1: Mains Electricity)
มุมมอง 3044 ปีที่แล้ว
Earthing Electricity at SPCS (Part 1: Mains Electricity)
Oscilloscope Usage
มุมมอง 934 ปีที่แล้ว
Oscilloscope Usage
Experiment: Using Blue and Red Litmus Paper
มุมมอง 7K4 ปีที่แล้ว
Experiment: Using Blue and Red Litmus Paper