Sending text to microbit with uart

Hi!

I'm trying to send values from app inventor app to microbit via this link App Inventor, Micro:bit and UART

But I can't get it work. The problem lies in this part of the code
image

The global values are as follow:
Skjermbilde 2022-04-25 224008

When I remove the RegisterForByte block the app won't crash in this part of the code. But when I then send text the UUid are of course missing and app will crash.

Why won't this RegisterForBytes block run?

Any suggestions?

Svein-Tore

Probably the problem is on your micro:bit. What do you have installed there?
Did you use the .aia from the tutorial or did you make modifications?

Hi Ghica!

Here I have haded the .hex and .aia I'm using. And I'm using microbit V1.

microbit-UART_RW (1).hex (1.5 MB)
BTReadWrite.aia (291.2 KB)

Hi Svein-Tore
V1 smells like memory problem. Did you see an error code on your micro:bit?
I cannot try your set-up right now, but I was never very successful using V1 micro:bits because of memory problems.

It is also important to make sure your have the latest firmware and that you do not use a Microsoft or Chrome browser to load the .hex file on the micro:bit, because they install stuff that impairs the UART.
But if you can, get a V2!

Hi Ghica!

I have searched a bit around, and It looks lkike you are spot on:

Bluetooth

micro:bit V1

While the BBC micro:bit has hardware capable of allowing the device to work as a Bluetooth Low Energy (BLE) device, it only has 16k of RAM. The BLE stack alone takes up 12k RAM which means there’s not enough memory for MicroPython to support Bluetooth on a micro:bit V1.

micro:bit V2

The nRF52833 used by the micro:bit V2 has 128k of RAM, allowing Micropython to make use of the BLE stack. Currently the only implemented feature is BLE flashing, allowing a user to update the firmware on the micro:bit over Bluetooth.

At the time that this was written the Nordic DFU service is implemented, and partial flashing is currently working but in beta. The Nordic DFU service updates everything in flash and will take a (relatively) long time to complete, whereas the partial flashing service only updates the filesystem containing the user scripts.

M y problems have been problems connecting to the microbit, and sometimes the microbit starts blinking in a randomly way (guess it is a kind of error).

For that reason I have ordered a microbit V2.

Hi Ghica! Micro:bit V2 solved the problem! though I must sometimes pair the micro:bit once again, and sometimes get message the bluetooth service are missnig. But downloading the program to micro:bit again (WHITHOUT chrome) fix that problem.

Happy to hear!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.