This app is currently not available on Google Play.
About micro:bit Gateway
micro:bit Gateway was a communication app developed by Ferdinand Stueckler. It was removed from Google Play May 7, 2021 and is no longer available for download.
Download Statistics
micro:bit Gateway had been downloaded 2.2 thousand times before it became unavailable.
User Ratings
The app had no ratings.
App Information
micro:bit Gateway was free to download. The APK download size was 85.50 kB. The last available version was 1.2. The last update was on December 30, 2020.
Technical Requirements
micro:bit Gateway required Android 4.4+ or higher. The app had a content rating of Everyone. The app had been available on Google Play October 2016.
Description
This app establishes a channel between two micro:bit devices. The channel will be handeled as UART communication. You have to develope a programm on each micro:bit device with UART transfer.
Indication aktive: BLE Indication (Default) Indication inaktive: BLE Notification
Silent aktive: No visual logging Silent inaktive: Logging
Requirements: - Min. Android 4.4 - Bluetooth Low Energy (BLE) - Paired devices - micro:bit programm (developed by yourself)
void processBLEUart() { uint8_t readBuf[22]; while (1) { // loop for ever if ((!connected) || (!uart->isReadable())) { uBit.sleep(50); // wait 50mS and check again continue; // loop; } //else we are connected AND there is some input to read if (uart->isReadable()) { while (uart->isReadable()) { int charCount = uart->read(readBuf, 22, ASYNC); if (charCount != 0) { for (int i = 0; i < charCount; i++) uBit.display.scroll((char) readBuf[i]); } } } } }
/* IMPORTANT !!! Oherwise you will run out of memory !
Recommend disabling the DFU and Event services in MicroBitConfig.h since they are not needed here: microbit->microbit-dal->inc->core->MicroBitConfig.h
Get a detailed PDF report for micro:bit Gateway with download trends, rating history,
and key performance statistics — useful for competitive research or tracking your own app.
Learn more
Each subscription will automatically renew 3 days before the expiration date for
the same time period. Subscriptions can be cancelled at any time before the renewal.