micro:bit Numeric Application icon

micro:bit Numeric 2.2

98.5 KB / 10+ Downloads / Rating 4.1 - 7 reviews


See previous versions

micro:bit Numeric, developed and published by Ferdinand Stueckler, has released its latest version, 2.2, on 2023-12-21. This app falls under the Communication category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 4.1, based on 7 reviews.

micro:bit Numeric APK available on this page is compatible with all Android devices that meet the required specifications (Android 5.0+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.ble.microbit.numeric

Updated: 1 year ago

Developer Name: Ferdinand Stueckler

Category: Communication

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing micro:bit Numeric on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

4.1
Total 7 reviews

Reviews

5 ★, on 2020-08-06
Superb and best app for microbit BT control. I think lack of info presents or no website for brief details. however try to code as in the screenshot available for this app and works better. My headache is releived by this app after trying many apps. Thanks to the creator for giving ad-free and nice work 😀

1 ★, on 2018-01-24
Too bad

Previous Versions

micro:bit Numeric 2.2
2023-12-21 / 98.5 KB / Android 5.0+

micro:bit Numeric 2.1
2020-12-29 / 53 KB / Android 5.0+

About this app

This app communicates between Android and a micro:bit device. You can transmit numeric data as text or value. The UART communication also has to be implemented at the micro:bit device.

Text enabled: text data transmission
Text disabled: numeric data transmission
Newline enabled: '\n' (newline) added
Newline disabled: no additional data
Zero enabled (Touch/Sense enabled): Send 0 on release button

For PXT programming you have to enable Text and Newline.

Requirements:
- Min. Android 4.4
- Bluetooth Low Energy (BLE)
- Paired devices !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- micro:bit programm (developed by yourself)

PXT javascript example:
let str = ""
let connected = 0
input.onButtonPressed(Button.A, () => {
if (connected) {
bluetooth.uartWriteString("A")
}
})
bluetooth.onBluetoothConnected(() => {
connected = 1
})
bluetooth.onBluetoothDisconnected(() => {
connected = 0
})
bluetooth.startUartService()
basic.forever(() => {
if (connected == 1) {
str = bluetooth.uartReadUntil(serial.delimiters(Delimiters.NewLine))
if (str == "B") {
basic.showString("Hi")
} else {
basic.showString(str)
}
} else {
basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # . # .
`)
}
})

Remark: Do not forget to pair devices (after micro:bit program changes)

New features

bug receiving solved

App Permissions

Allows applications to connect to paired bluetooth devices.
Allows applications to discover and pair bluetooth devices.
Allows an app to access precise location.
Allows an app to access approximate location.