View on GitHub

microbit

A MakeCode project

Projects Folder

This folder contains 9 Micro:bit projects by Parth Singla. Each project has its own subfolder with source code and a short README explaining what the project does, how to use it, and what coding ideas it demonstrates.

Folder Map

Folder Project Name Source File Category Best For Reviewing
space-invaders Space Invaders main.ts Arcade game Sprites, shooting, score, lives
memory-game Memory Game main.ts Memory and logic game Sequence generation and answer checking
coin-flipper Coin Flipper main.ts Probability project Random Boolean outcomes
rock-paper-scissors Rock Paper Scissors main.ts Random choice game Shake gesture and random selection
dot-chaser Dot Chaser main.ts Gesture and movement game Movement on a 5x5 grid
snap-the-dot Snap the Dot main.ts Reflex game Timing and edge bounce
crashy-bird Crashy Bird main.ts Obstacle game Arrays, obstacles, collision detection
compass-and-music-maker Compass and Music Maker main.py Sensor and music project Compass heading, gestures, touch pins, music
wimpy-kid-20 Wimpy Kid 20 main.ts Book-inspired coding Creative connection between reading and coding

How to Read Each Project

Each subfolder follows this simple structure:

project-name/
├── README.md
└── main.ts or main.py

The README explains:

Main Learning Themes

Suggested Review Path

For a quick review, start with:

  1. space-invaders
  2. memory-game
  3. compass-and-music-maker

These three projects show the strongest range: game design, logic, sensors, and music.