1
Introduction to the BBC Micro:bit
I certainly hope that you have read the preface and the table of contents, which provide a fair idea about our journey into the amazing world of the BBC Micro:bit (also written as Micro:bit or Micro Bit). This introductory chapter will warm you up for the upcoming exciting journey into the vast world of the Micro:bit. The road ahead is full of interesting concepts and projects. It is always a good idea to prepare well for the journey ahead, and this chapter will accomplish that.
We will explore the following topics in this chapter:
- The history of the Micro:bit
- The specifications of Micro:bit V1 and Micro:bit V2
- Powering up the Micro:bit
- Breakout boards
- Fritzing to create circuit diagrams
Let's get started!
Technical requirements
We will need the following hardware for this chapter:
- BBC Micro:bit V1 or V2
- A computer with Windows, macOS, or Linux
- A BBC Micro:bit edge connector
- A Micro-USB to USB cable
- An internet connection
- A mobile power bank
- Kitronik Mi:power
The history of the Micro:bit
It is important to know the history of the BBC Micro:bit. The British Broadcasting Corporation (BBC) is the United Kingdom's public broadcaster. It is also the world's oldest and biggest broadcaster. BBC has always been pioneering in creating programs for outreach in science and technology to improve the public understanding of science. Its programs include various documentaries and television series.
One such interesting television series was The Computer Programme. It was broadcast on BBC Two and used a home computer, the BBC Micro, conceptualized by the BBC and developed by Acorn Computers. The TV series was a part of the BBC Computer Literacy Project. The BBC Micro had six different models, which were all based on the famous MOS Technology 6502 8-bit microprocessor. It is a simplified and faster version of the Motorola 6800 microprocessor. The 6502 is a very popular microprocessor, and variants of it were used in popular video game consoles and computers such as Atari 2600, Apple II, Nintendo Entertainment System (popularly known as NES or Famicom), Commodore 64, and, of course, the BBC Micro. The BBC Micro was very successful, and it made a great impact in the computer education sector, leaving a great legacy behind.
In 2012, with the release of Raspberry Pi, a new era was ushered into the world of computing and education. Through the Computer Literacy Project, the BBC sought to build upon the legacy of the BBC Micro after the great success of Raspberry Pi. It onboarded many partners from industry, such as Microsoft, and academia, such as Lancaster University. The first version (now referred to as the Micro:bit V1) was launched in July 2015 and was available for general sale in March 2016. The BBC also gave hundreds of thousands of Micro:bits to school children in the UK as a part of science education outreach. After the Micro:bit successfully launched, the BBC formed a not-for-profit organization known as the Microbit Foundation.
Note
For more details, you can visit the home page of the Microbit Foundation at https://microbit.org/.
In October 2020, the Microbit Foundation released the second version of the Micro:bit. V2 has got better specifications than V1 at the same price. We will explore the specifications of V1 and V2 side by side in the following section.
The specifications of Micro:bit V1 and Micro:bit V2
The following table compares the features of the BBC Micro:bit V1 and V2 side by side (source: https://microbit.org/):
BBC Micro:bit
V1
V2
Processor
Nordic nRF51822
Nordic nRF52833
Flash memory
256 KB
512 KB
RAM
16 KB
128 KB
Speed
16 MHz
64 MHz
Bluetooth
Bluetooth 4.0
Bluetooth 5.1 with Bluetooth Low Energy (BLE)
Radio communication
2.4 GHz radio (80 channels)
2.4 GHz radio (80 channels)
Buttons
Two programmable (A and B) and one system (reset)
Two programmable (A and B) and one system (power/reset)
On/off switch
None
Press and hold the rear power button
Touchpad
None
Touch-sensitive logo
Microphone
None
Onboard Knowles SPU0410LR5H-QB-7 MEMS microphone (with LED indicator)
Display
5x5 programmable LED matrix (25 LEDs in total)
5x5 programmable LED matrix (25 LEDs in total)
Speaker
None
Onboard JIANGSU HUANENG MLT-8530 (up to 80 dB)
Motion sensor and compass
LSM303AGR
LSM303AGR
Temperature sensor
On-board temperature sensor
On-core NRF52
Edge connector
25 pins
25 pins
Table 1.1 - Comparison of the features of BBC Micro:bit V1 and V2
The processors used in both versions are a special type of processor known as a System on Chip (also abbreviated as SoC or SOC). An SoC is an Integrated Circuit (IC) that has all or most components of a complete working computer system. A typical SoC has a processor, flash memory, and RAM. Both versions employ Advanced RISC Machines (ARM) processors. The ARM uses Reduced Instruction Set Computer (RISC) instruction architecture. The V1 uses Nordic nRF51822 SoC (https://www.nordicsemi.com/Products/nRF51822), and the V2 uses Nordic nRF52833 (https://www.nordicsemi.com/products/nrf52833). The Random Access Memory (RAM) is used to execute the programs. The flash memory is used to store the programs, and it is reprogrammable.
The following diagram shows the front faces of V2 and V1 side by side:
Figure 1.1 - Hardware features on the fronts of V2 and V1 (courtesy: ©Micro:bit Educational Foundation/microbit.org)
The following diagram shows the rear of the V2...