https://github.com/mikhailms/microbit-text-scroller
Simple Text Scroller for micro:bit
https://github.com/mikhailms/microbit-text-scroller
embedded microbit text-scroller
Last synced: 2 months ago
JSON representation
Simple Text Scroller for micro:bit
- Host: GitHub
- URL: https://github.com/mikhailms/microbit-text-scroller
- Owner: MikhailMS
- License: mit
- Created: 2022-09-06T00:30:56.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-11T01:12:47.000Z (over 3 years ago)
- Last Synced: 2025-01-01T09:42:08.888Z (over 1 year ago)
- Topics: embedded, microbit, text-scroller
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Microbit Text Scroller
This lib provides a simple ScrollMessage struct that would allow you to have scrolling text on your microbit 5*5 LED display
Rationale:
Initially I thought this functionality already been implemented and is nicely available, however I only managed to find [1 crate](https://github.com/mattheww/microbit-text) that should have worked for me,
but it didn't (still not sure why), sooo that's the main reason for me creating this lib (plus I wanted to practice some Rust)
So anyhow it was a great experience for me and maybe this lib would be of use to someone else out there
## Usage
This lib is not available on `crates.io`, so you'd need to add it to your Cargo.toml as following
```
[dependencies]
microbit-text-scroller = { git = "https://github.com/MikhailMS/microbit-text-scroller" }
```
## Examples
While this is super easy to use lib, if you feel like you want to see some examples - [check out this repo](https://github.com/MikhailMS/microbit-discovery-examples)