Start by creating a new project. To do this, open the following URL in a new tab: https://makecode.microbit.org/. Click on 'New Project', give it a name, and then click 'Create'.
Take a moment to explore the interface. On the left, you have the simulator where you can test your code. On the right, you have the code editor where you will write your code. Notice the different categories of code blocks available for you to use.
You're now going to write some simple code to make an LED on your Microbit light up. Add the following code in the code editor:
basic.forever(function () {
led.plot(2, 2)
})This code will continuously light up the LED at the center of your Microbit's 5x5 grid.
After writing your code, click on the 'Play' button located below the simulator to run your code. You should see an LED light up in the center of the simulated Microbit on the left.
Explore other features of the MakeCode Microbit interface. Try out different blocks of code, observe their effect in the simulator, and get comfortable with the environment. Remember, the best way to learn is by doing!