"Hello World!" ist ein typisches Startbeispiel in der Informatik:
basic.showString("Hello World!")
Lasst nun euern micro:bit "Hallo" sagen!
… und ein paar
ausgeben
Ich möchte meinen micro:bit schütteln und dann ein passendes Logo angezeigt bekommen.
Verifiziere, dass …
input.onGesture(Gesture.Shake, () => {
})
basic.showNumber(Math.random(2))
Schere Stein Papier als LED-Ausgabe: Wenn "0", dann "Schere"; wenn "1", dann "Stein"; sonst "Papier"
if (true) {
} else {
}
Über das kann man die Bedingung anpassen:
let icon = 0
if (icon == 0) {
basic.showIcon(IconNames.Scissors)
} else if (icon == 1) {
basic.showLeds(`
# # # # .
# # # # #
# # # # #
# # # # #
. # # # #
`)
} else {
basic.showIcon(IconNames.Square)
}