https://github.com/firefly-zero/firefly-keyboard
⌨️ A rust crate for virtual keyboard for Firefly Zero
https://github.com/firefly-zero/firefly-keyboard
Last synced: 3 months ago
JSON representation
⌨️ A rust crate for virtual keyboard for Firefly Zero
- Host: GitHub
- URL: https://github.com/firefly-zero/firefly-keyboard
- Owner: firefly-zero
- License: other
- Created: 2026-03-11T16:02:41.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-03-12T20:10:52.000Z (3 months ago)
- Last Synced: 2026-03-12T20:27:33.517Z (3 months ago)
- Language: Rust
- Size: 65.4 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# luxboard lite
Virtual keyboard for [Firefly Zero](https://fireflyzero.com/) apps using [the Rust SDK](https://github.com/firefly-zero/firefly-rust).

## Installation
```bash
cargo add firefly-keyboard
```
## Usage
```rust
// fn boot()
let opts = firefly_keyboard::Options::default();
let kbd = firefly_keyboard::Keyboard::new(opts);
// fn update()
kbd.update();
if !kbd.is_open() {
let text = kbd.text.clone();
// ...
}
// fn render()
kbd.render();
```
See [examples/keyboard/main.rs](./examples/keyboard/main.rs) for a complete example.
## License
[MIT License](./LICENSE). Feel free to use the package in any apps and games and modify it for your needs.
Initially developed by [Nanobot567](https://codeberg.org/Nanobot567) and is currently officially maintained by the Firefly Zero core team.