Parts List


Kit Review

​Overall, this kit is excellent, and I would definitely recommend this kit to newbies starting electronics in general, plus, this kit has many positive comments from me, such as:


Micro:bit Specifications

Micro:bit board
General
Type: Microcontroller
Architecture: For Micro:bit
Software: Code Kingdoms (JavaScript) Microsoft Block Editor (Blocky & JavaScript), Microsoft TouchDevelop (Blocky & JavaScript), and MU Editor (MicroPython)
Main Core Processor: 16Mhz 32-bit ARM Cortex-M0 microcontroller
Memory: 256KB flash and 16KB RAM
USB Interface Chip: Freescale MKL26Z128VFM4
Bluetooth Stack: Bluetooth 4.1 with BLE (Bluetooth Low Energy)/2.4GHz RF SoC (system-on-a-chip)
Sensitivity: -39dBM in Bluetooth Low Energy mode
TX Power: -20dBM to 4dBM in 4dB steps (Bluetooth)
Channels: 50 2Mhz channels, only 40 used (0 to 39), and 3 advertising channels (37, 38, 39) for Bluetooth
System Debugging: Jlink/OB
System Protocol: CMSIS-DP
Frequency Band: 2.4GHz for radio communication
Input/Output Components
Programming, Software, and Serial input: Micro-B USB port
Compass: Freescale MAG3110 3-axis geomagnetic sensor
Accelerometer: Freescale MMA8653FC 3-axis accelerometer
Magnetometer: Freescale MAG3110 3-axis magnetometer
Temperature Sensor: On-core nRF51
Buttons: Two tactile user buttons and one tactile system button
Display type: Surface-mount red LEDs in a 5x5 matrix
GPIO (General Purpose Input/Output) pins: 19 usable GPIO pins for: i2c, light-sensing, digital input/output, PWM, serial transmit/receive, SPI, buttons, touch-sensing, and accessibility
Input/Output Signal: Digital
Power
Operating Voltage: +1.8 – +3.6 volts
Maximum USB Current: 120 mA
Power Inputs: JST battery input, USB input, interface chip input or, by the power pins
Weight and Dimensions
Weight: 9g
Size (L × W × H): 5.13 cm × 4.32 cm × 1.13 cm

Pinout

Pinout of Micro:bit

Product Review

When this board arrived, I discovered many benefits from tinkering with this microcontroller which includes:


Sample code

The two main softwares for the Micro:bit is going to be used in this page: Microsoft Block Editor (JavaScript & Block), and Micro Python.

Blocks Micro:bit Sample Code
Sample Micro:bit code in Microsoft Block Editor
JavaScript Micro:bit Sample Code

    basic.forever(() => {
        basic.showString("This is the Micro:bit!")
        basic.showIcon(IconNames.Heart)
        basic.pause(1000)
    })
        
MicroPython Micro:bit Sample Code

    from microbit import *
    while True:
        display.scroll("This is the Micro:bit!")
        sleep(1000)
        display.show(Image.HEART)
        sleep(1000)
        

Micro:bit Battery Holder – 2xAA Specifications

General
Type: Battery Holder
Architecture: For all electronics
Power
N/A The voltage and current depends on the type of batteries inserted into the holder and the load which the holder is being drawn to.
Weight and Dimensions
Weight: 18g without batteries;
65g with AA batteries
Size (L × W × H): 6.7 cm × 3.2 cm × 1.7 cm
Wire Length: 10.4 cm

Pinout

Red Wire: VCC (+)
Black Wire: GND (-)

Product Review

This battery holder contains features which offers extra, that could add more to your projects which includes the likes of:


ElecFreaks Micro:bit Breakout Board Specifications

General
Type: Breakout Board
Architecture: For Micro:bit
Power
N/A The power may vary as it depends on the power coming from the Micro:bit attached.
Weight and Dimensions
Weight: 29g without Micro:bit attached; 38g with Micro:bit attached
Size (L × W × H): 6.2 cm × 6 cm × 1 cm without Micro:bit attached;
9.7 cm × 6 cm × 1 cm with Micro:bit attached

Pinout

Pinout of Micro:bit Breakout Board

Product Review

This specific Micro:bit accessory is currently only being sold at Elecfreaks and Tinkercademy, but this rare product has features which helps us, like:

The one error is that the VCC pins (the red row of pins) states that it is +3.3 volts, but it could be interchangeable to +5 volts via the power switch.


Micro-B USB Data Cable Specifications

Included Micro:bit USB 2.0 data cable
General
Type: Data, Synchronisation, Power Cable
Architecture: For Micro:bit
Interface: Universal Serial Bus (USB)
Power
N/A Power will depend on the load of the USB cable.
Maximum Operating Voltage: +5 volts (+0.25 / -0.60 volts)
Maximum Operating Current: 500 mA
Weight and Dimensions
Weight: 15g
Size (L × W × H): 30 cm × 1.4 cm × 0.8 cm

Pinout

Male Micro-B USB 2.0 Pinout
Pinout from left to right
1: VCC (+)
2: Data -
3: Data +
4: NC (Not Connected)
5: GND (-)
Male Type-A USB 2.0 Pinout
Pinout from left to right
1: VCC (+)
2: Data -
3: Data +
4: GND (-)

Product Review

This particular USB 2.0 data cable, which was built for the Micro:bit, could be used for a variety of applications because it contains two common USB ports (Micro-B 2.0 and Type A 2.0), plus, this cable includes beneficial features such as:


IIC OLED Display Specifications

IIC OLED Display
General
Type: Display
Architecture: For Micro:bit
Operating Temperature: -20°C – 70°C
Communication Method: IIC
Driver IC (Integrated Circuit): SSD1306
OLED Colour: Blue
Power
Operating Voltage: +3.3 – +5 volts
Operating Current: Depends on the usage of the individual LEDs
Weight and Dimensions
Diagonal Screen Size: 0.96" (2.4384 cm)
Resolution Size 128 x 64 pixels
Weight: 5g
Size (L × W × H): 2.7 cm × 2.8 cm × 1.06 cm

Pinout

https://www.elecfreaks.com/estore/octopus-passive-buzzer-brick-obpb01.html
G: GND (-)
V: VCC (+)
CL: SCL (Serial Clock)
DA: SDA (Serial Data)

Product Review

This OLED, in particular, is really special from the ones I've bought in the past as the differing features includes:

With those aspects, I think that this OLED display needs to add mounting holes for projects and full pin markings so makers won't be so confused on the connections, the pinout and translation of the markings are to the right.


Sample Code

Blocks IIC OLED Display Sample Code
Sample IIC OLED Display code in Microsoft Block Editor
JavaScript IIC OLED Display Sample Code

    basic.forever(() => {
        OLED.init(32, 128)
        OLED.showString("This is the IIC OLED Display.")
        basic.pause(2000)
        OLED.clear()
        OLED.init(32, 128)
        OLED.showString("This OLED was coded  with the Micro:bit.")
        basic.pause(2000)
        OLED.clear()
    })
        
MicroPython IIC OLED Display Sample Code

    # Please visit the following links below to see more on using the OLED Display with the Micro:bit on MicroPython
    # as there're no finalized libraries made yet:

    # https://github.com/fizban99/microbit_ssd1306
    # https://gist.github.com/yuliantoeric/2eff0ed8fd2457f7862a8ea9979073ca
    # https://github.com/Tinkertanker/pxt-ssd1306-microbit
    # https://github.com/micropython/micropython/blob/479392a56e6edd8449e594c0e5c1e8f5176411ab/drivers/display/ssd1306.py
    # https://github.com/khenderick/micropython-drivers
        
https://www.elecfreaks.com/estore/octopus-passive-buzzer-brick-obpb01.html

Tower Pro SG-90 Mini Servo Motor (1.6kg) Specifications

Tower Pro SG-90 Mini Servo Motor (1.6kg)
General
Type: Servo Motor
Architecture: For Micro:bit
Gear Material: Nylon and Plastic
Ferrite Type: 3-pole
Bearing: Top ball bearing
Rotation: Busing
Operating Speed (with no load): 0.12 seconds/60 degrees @ +4.8 volts
Stall Torque: 1.6kg/cm @ +4.8 volts
Operating voltage: +4.8 - +6 volts
Dead band width: 10 µs
Pulse Width: 500 - 2400 µs
Operating Temperature: 0°C - 55°C
Modulation: Analog
Power
Operating Voltage: +4.8 ~ +6 volts
Operating Current (no load): 500 - 1000 mA
Weight and Dimensions
Weight (with no accessories): 10g
Wire Length: 24.5 cm
Size (L × W × H) (with no accessories): 3.2 cm × 1.2 cm × 3 cm

Pinout

Orange Wire: Signal
Red Wire: VCC (+)
Brown Wire: GND (-)

Product Review

This product is very common in the servo motor range, but this model is the one I mainly use due to features which includes:

Note: The SG-90 Servo Motor requirehttps://www.elecfreaks.com/estore/octopus-passive-buzzer-brick-obpb01.htmls +4.8 ~ +6 volts power supply, it is recommended to use an external power supply while still using the Micro:bit for the signal pin to program the servo motor. For this, the Micro:bit breakout board is fine as it can give out +5 volts.


Sample Code

Blocks Tower Pro SG-90 Mini Servo Motor (1.6kg) Sample Code
Sample Tower Pro SG-90 Mini Servo Motor code in Microsoft Block Editor
JavaScript Sample Code

    basic.forever(() => {
        pins.servoWritePin(AnalogPin.P0, 180)
        basic.pause(500)
        pins.servoWritePin(AnalogPin.P0, 0)
        basic.pause(500)
    })
        
MicroPython Sample Code

    from microbit import *
    while True:
        pin0.write_analog(180)
        sleep(500)
        pin0.write_analog(1)
        sleep(500)
        

Octopus PIR Sensor Brick Specifications

Octopus PIR Sensor Brick
General
Type: Sensor
Architecture: For Micro:bit
Operating Temperature: -25°C - 85°C
Sensing Distance: 4 -5 meters
Viewing Angle (X & Y): 65° (Overlook) / 50° (Side-look)
Output Signal: Digital
Power
Operating Voltage: +1.8 ~ +6 volts
Operating Current: 10 - 36 mA
Output High/Low Current: ± 10 mA
Weight and Dimensions
Weight: 6g
Wire Length: 27.2 cm
Size (L × W × H): 4.2 cm × 2.4 cm × 1.6 cm

Pinout

G (Black Wire):
V (Red Wire):
S (Yellow Wire) Signal

Product Review

This Octopus sensor brick can come in handy for many security or safety projects. With its massive variety of applications, some of its inviting features may include:


Sample Code

Blocks Octopus PIR Sensor Brick Sample Code
Sample Octopus PIR Sensor Brick code in Microsoft Block Editor
JavaScript Octopus PIR Sensor Brick Sample Code

    basic.forever(() => {
        if (pins.digitalReadPin(DigitalPin.P0) == 1) {
            basic.showString("Motion!")
        }
    })
        
MicroPython Octopus PIR Sensor Brick Sample Code

    from microbit import *
    while True:
        if pin0.read_digital():
            display.scroll("Motion!")
        

Octopus Soil Moisture Sensor Brick Specifications

General
Type: Sensor
Architecture: For Micro:bit
Output Signal: Analog
Power
Operating Voltage: +3.3 - +5 volts
Operating Current: 35 mA
Output Signal Voltage: +0 ~ +4.2 volts
Weight and Dimensions
Weight: 5g
Wire Length: 26.3 cm
Size (L × W × H): 5.55 cm × 2.37 cm × 1 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
S (Yellow Wire): Signal

Product Review

This soil moisture sensor provides a good part in any environmental or plant monitoring projects and some facets of this product includes:


Sample Code

Blocks Octopus Soil Moisture Sensor Brick Sample Code
JavaScript Octopus Soil Moisture Sensor Brick Sample Code

    let value = 0
    basic.forever(() => {
        value = pins.analogReadPin(AnalogPin.P0)
        basic.clearScreen()
        basic.showNumber(value)
        basic.pause(3000)
    })
        
MicroPython Octopus Soil Moisture Sensor Brick Sample Code

    from microbit import *
    while True:
        value = pin0.read_analog()
        display.scroll(str(value))
        sleep(3000)
        

Octopus ADKeypad Specifications

Octopus ADKeypad
General
Type: Keypad
Architecture: For Micro:bit
Output Signal: Analog
Power
Operating Voltage: +3.3/+5 volts
Operating Current: ~0.1 mA
Weight and Dimensions
Weight: 14g
Wire Length: 25 cm
Size (L × W × H): 5.44 cm × 2.85 cm × 1.6 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
S (Yellow Wire): Signal

Product Review

This distinct keypad contains some exclusive properties which diverges it from other common keypads, such as:


Sample Code

Blocks Octopus ADKeypad Sample Code
Sample Octopus ADKeypad code in Microsoft Block Editor
JavaScript Octopus ADKeypad Sample Code

    basic.forever(() => {
        if (tinkercademy.ADKeyboard(ADKeys.A, AnalogPin.P0)) {
            basic.showString("A")
        }
        if (tinkercademy.ADKeyboard(ADKeys.B, AnalogPin.P0)) {
            basic.showString("B")
        }
        if (tinkercademy.ADKeyboard(ADKeys.C, AnalogPin.P0)) {
            basic.showString("C")
        }
        if (tinkercademy.ADKeyboard(ADKeys.D, AnalogPin.P0)) {
            basic.showString("D")
        }
        if (tinkercademy.ADKeyboard(ADKeys.E, AnalogPin.P0)) {
            basic.showString("E")
        }
    })
        
MicroPython Octopus ADKeypad Sample Code

    from microbit import *
    while True:
        if pin0.read_analog() < 10:
            display.show('A')
        if pin0.read_analog() > 40 and pin0.read_analog() < 60:
            display.show('B')
        if pin0.read_analog() > 80 and pin0.read_analog() < 110:
            display.show('C')
        if pin0.read_analog() > 130 and pin0.read_analog() < 150:
            display.show('D')
        if pin0.read_analog() > 530 and pin0.read_analog() < 560:
            display.show('E')
        

Octopus Crash Sensor Brick Specifications

Octopus Crash Sensor Brick
General
Type: Sensor
Architecture: For Micro:bit
Output Signal: Digital
Power
Operating Voltage: +3.3/+5 volts
Operating Current: ~0.1 mA
Weight and Dimensions
Weight: 5g
Wire Length: 25.2 cm
Size (L × W × H): 3.57 cm × 2.34 cm × 1.11 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
S (Yellow Wire): Signal

Product Review

Since there're not many crash sensor bricks like this certain brick, it encompasses some special highlights which includes the likes of:


Sample Code

Octopus Crash Sensor Brick Sample Code
Sample Octopus Crash Sensor Brick code in Microsoft Block Editor
JavaScript Octopus Crash Sensor Brick Sample Code

    basic.forever(() => {
        if (pins.digitalReadPin(DigitalPin.P16) == 0) {
            basic.showString("Crashed!")
        }
    })
        
MicroPython Octopus Crash Sensor Brick Sample Code

    from microbit import *
    while True:
      if pin16.read_digital() == False:
        display.scroll("Crashed!")
        

Octopus Passive Buzzer Brick OBPB01 Specifications

General
Type: Buzzer
Architecture: For Micro:bit
Output Signal: Analog
Power
Operating Voltage: +5 volts
Operating Current: ~100 mA
Weight and Dimensions
Weight: 6g
Wire Length: 25.6 cm
Size (L × W × H): 3.65 cm × 2.34 cm × 1.13 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
S (Yellow Wire): Signal

Product Review

Based on the many passive buzzer modules I have, this is one of the modules I would select because it contains numerous factors, some of which are:


Sample Code

Blocks Octopus Passive Buzzer Brick OBPB01 Sample Code
JavaScript Octopus Passive Buzzer Brick OBPB01 Sample Code

    basic.forever(() => {
        for (let i = 0; i < 2; i++) {
            music.playTone(330, music.beat(BeatFraction.Whole))
        }
        music.playTone(349, music.beat(BeatFraction.Whole))
        for (let i = 0; i < 2; i++) {
            music.playTone(392, music.beat(BeatFraction.Whole))
        }
        music.playTone(349, music.beat(BeatFraction.Whole))
        music.playTone(330, music.beat(BeatFraction.Whole))
        music.playTone(294, music.beat(BeatFraction.Whole))
        for (let i = 0; i < 2; i++) {
            music.playTone(262, music.beat(BeatFraction.Whole))
        }
        music.playTone(294, music.beat(BeatFraction.Whole))
        music.playTone(330, music.beat(BeatFraction.Whole))
        music.playTone(330, music.beat(BeatFraction.Double))
        music.playTone(294, music.beat(BeatFraction.Half))
        music.playTone(294, music.beat(BeatFraction.Double))
    })
        
MicroPython Octopus Passive Buzzer Brick OBPB01 Sample Code

    import music
    while True:
      for count in range(2):
        music.pitch(330, 500)
      music.pitch(349, 500)
      for count2 in range(2):
        music.pitch(392, 500)
      music.pitch(349, 500)
      music.pitch(330, 500)
      music.pitch(294, 500)
      for count3 in range(2):
        music.pitch(262, 500)
      music.pitch(294, 500)
      music.pitch(330, 500)
      music.pitch(330, 1000)
      music.pitch(294, 250)
      music.pitch(294, 1000)
        

Octopus 5mm LED Brick OBLED – Red Specifications

General
Type: LED (Light Emitting Diode)
Architecture: For Micro:bit
LED Colour: Red
Output Signal: Digital
Power
Operating Voltage: +3.3 – +5 volts
Operating Current: 5 mA
Weight and Dimensions
Weight: 5g
Wire Length: 27.5 cm
Size (L × W × H): 3.87 cm × 2.34 cm × 1 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
S (Yellow Wire): Signal

Product Review

This LED (Light Emitting Diode) Brick is fairly distinctive from ordinary LEDs as it has a capability to use digital interfaces. I like this module very much as it portrays specific traits inclusive of:


Sample Code

Blocks Octopus 5mm LED Brick OBLED – Red Sample Code
JavaScript Octopus 5mm LED Brick OBLED – Red Sample Code

    basic.forever(() => {
        pins.digitalWritePin(DigitalPin.P16, 1)
        basic.pause(200)
        pins.digitalWritePin(DigitalPin.P16, 0)
        basic.pause(200)
    })
        
MicroPython Octopus 5mm LED Brick OBLED – Red Sample Code

    from microbit import *
    while True:
        pin16.write_digital(1)
        sleep(200)
        pin16.write_digital(0)
        sleep(200)
        

Octopus 5mm LED Brick – Green Specifications

General
Type: LED (Light Emitting Diode)
Architecture: For Micro:bit
LED Colour: Green
Output Signal: Digital
Power
Operating Voltage: +3.3 – +5 volts
Operating Current: 5 mA
Weight and Dimensions
Weight: 5g
Wire Length: 26.5 cm
Size (L × W × H): 3.92 cm × 2.4 cm × 1.15 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
S (Yellow Wire): Signal

Product Review

The series of LED Bricks available in different variations can assist a maker in so many projects, especially visual displays with multiple colours. Just like others, this LED Brick comes with:


Sample Code

Blocks Octopus 5mm LED Brick – Green Sample Code
JavaScript Blocks Octopus 5mm LED Brick – Green Sample Code

    basic.forever(() => {
        pins.digitalWritePin(DigitalPin.P16, 1)
        basic.pause(200)
        pins.digitalWritePin(DigitalPin.P16, 0)
        basic.pause(200)
    })
        
MicroPython Blocks Octopus 5mm LED Brick – Green Sample Code

    from microbit import *
    while True:
        pin16.write_digital(1)
        sleep(200)
        pin16.write_digital(0)
        sleep(200)
        

Octopus 5mm LED Brick OBLED – Blue Specifications

General
Type: LED (Light Emitting Diode)
Architecture: For Micro:bit
LED Colour: Blue
Output Signal: Digital
Power
Operating Voltage: +3.3 – +5 volts
Operating Current: 5 mA
Weight and Dimensions
Weight: 5g
Wire Length: 26.5 cm
Size (L × W × H): 3.67 cm × 2.42 cm × 11.8 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
S (Yellow Wire): Signal

Product Review

Just like the rest of the LED bricks in the variety of colours available, this Blue LED brick is no different from the rest. Therefore, it includes features which may include the likes of:


Sample Code

Blocks Octopus 5mm LED Brick OBLED – Blue Sample Code
JavaScript Blocks Octopus 5mm LED Brick OBLED – Blue Sample Code

    basic.forever(() => {
        pins.digitalWritePin(DigitalPin.P16, 1)
        basic.pause(200)
        pins.digitalWritePin(DigitalPin.P16, 0)
        basic.pause(200)
    })
        
MicroPython Blocks Octopus 5mm LED Brick OBLED – Blue Sample Code

    from microbit import *
    while True:
        pin16.write_digital(1)
        sleep(200)
        pin16.write_digital(0)
        sleep(200)
        

Octopus Analog Rotation Brick OBARot Specifications

General
Type: Potentiometer
Architecture: For Micro:bit
Output Signal: Analog
Power
Operating Voltage: +5 volts
Operating Current: 0.05 mA
Weight and Dimensions
Weight: 7g
Wire Length: 25.7 cm
Size (L × W × H): 36.4 cm × 23 cm × 28.3 cm

Pinout

G (Black Wire): GND (-)
V (Red Wire): VCC (+)
​S (Yellow Wire): Signal

Product Review

This analog rotation brick, or potentiometer, is unique, because it's a brick, and everything is all integrated on the board. It includes traits like:


Sample Code

Octopus Analog Rotation Brick OBARot Sample Code
JavaScript Octopus Analog Rotation Brick OBARot Sample Code

    input.onButtonPressed(Button.A, () => {
        basic.showNumber(pins.analogReadPin(AnalogPin.P0))
    })
        
MicroPython Octopus Analog Rotation Brick OBARot Sample Code

    from microbit import *
    while True:
        if button_a.is_pressed():
            value = pin0.read_analog()
            display.show(str(value))
        

Product Page

ElecFreaks Micro:bit Tinker Kit product page

Check out the product here: https://www.elecfreaks.com/estore/elecfreaks-micro-bit-tinker-kit.html


Enjoy! Feel free to contact us for any inquiries!