Count from 1 to 5 - Makecode Typing CST Test
Loading…
Count from 1 to 5 — Makecode Code
Counts numbers from 1 to 5 on the LED display.
for (let i = 1; i <= 5; i++) {
basic.showNumber(i)
basic.pause(500)
}Makecode Language Guide
Microsoft MakeCode is a block- and text-based coding platform for creating interactive programs, games, and hardware projects using microcontrollers like micro:bit, Circuit Playground Express, and more.
Primary Use Cases
- ▸Teaching coding and computational thinking
- ▸Creating microcontroller-based projects
- ▸Prototyping simple games and simulations
- ▸Interactive electronics with sensors and LEDs
- ▸STEM workshops, classrooms, and maker labs
Notable Features
- ▸Block-based drag-and-drop programming
- ▸Text editor support for JavaScript and Python
- ▸Hardware simulation environment
- ▸Extensive hardware extensions and libraries
- ▸Cross-platform web-based IDE with offline apps
Origin & Creator
MakeCode was developed by Microsoft around 2016 as an educational platform to teach coding and electronics to students using a low-barrier, interactive environment.
Industrial Note
Primarily used in education, STEM learning, and maker projects; not intended for large-scale commercial software development.