This is a hexadecimal number font for micro:bit. You can show 2-digit hexadecimal number at a time.
Including decimal number font
input.onButtonPressed(Button.A, () => {
hexadecimal.showNumberHex(0)
})
input.onButtonPressed(Button.B, () => {
hexadecimal.showNumberHex(255)
})
input.onButtonPressed(Button.A, () => {
hexadecimal.showNumberDecimal(0)
})
input.onButtonPressed(Button.B, () => {
hexadecimal.showNumberDecimal(99)
})
0 to 9 font based on whaleygeek/mb_clock.
more description and demo video / 日本語の説明とデモ動画
MIT
- for PXT/microbit