easy micro bit projects
icro:bit Steps: Read the temperature data from the micro:bit. Display the temperature on the LED display or send it to a connected device. Code Snippet (MakeCode): ```blocks basic.forever(function () { basic.showNumber(input.temperature()) basic.pause(1000) }) ``` Out