Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 1.25 KB

tutorial.md

File metadata and controls

49 lines (37 loc) · 1.25 KB

Micro:Bit & Phyphox ☀️⚡

bluetooth
-radio

Einführung @unplugged

Lerne wie man den @boardname@ mit Phyphox via Bluetooth verknüpft und die Daten einer Photovoltaikzelle analysiert.

Bluetooth aktivieren @fullscreen

Klicke auf (+) ||advanced:extension:bluetooth|| und füge Bluetooth dazu. Dabei musst du die Auswahl bestätigen, da der @boardname@ entweder per Bluetooth statt Radio kommunizieren wird.

Verbindungskontrolle ✔️

Um zu Kontrollieren, ob der @boardname@ verbunden ist, fügen wir einen ||bluetooth:onBluetoothConnected|| melden mit einem Bild ||basic:showIcon|| das erfolgreiche Verbinden zurück.

bluetooth.onBluetoothConnected(function () {
    basic.showIcon(IconNames.Yes)
})

Verbindungskontrolle ❌

Look at the virtual @boardname@, you should see the heart and your drawing blink on the screen.

bluetooth.onBluetoothDisconnected(function () {
    basic.showIcon(IconNames.No)
})

Bluetoothservice starten

bluetooth.startUartService()

Daten senden

basic.forever(function () {
    bluetooth.uartWriteLine("")
})

Installieren auf dem @boardname@

Klicke auf ||download||, um dein Programm auf deinen @boardname@ zu übertragen!