https://github.com/twometer/vf60-rs
USB Driver for Fujitsu VF60 POS displays
https://github.com/twometer/vf60-rs
Last synced: 4 months ago
JSON representation
USB Driver for Fujitsu VF60 POS displays
- Host: GitHub
- URL: https://github.com/twometer/vf60-rs
- Owner: Twometer
- License: mit
- Created: 2024-04-07T12:23:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T22:38:19.000Z (almost 2 years ago)
- Last Synced: 2025-08-26T02:50:10.506Z (10 months ago)
- Language: Rust
- Homepage: https://crates.io/crates/vf60
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vf60-rs
A driver for Fujitsu VF60 POS displays based on [rusb](https://github.com/a1ien/rusb).
## Features
- Print characters to screen at any position (supports different cursor and character render styles)
- Read device information
- Equipment recognition
- Firmware revision
- Manufacturing date
- Product ID
- Serial number
- Operation time
- Control display brightness
## Quickstart
```rust
let vf60 = vf60::Driver::open()?;
vf60.clear_display()?;
vf60.print("Hello, world!")?;
```
## Examples
- [Hello world](https://github.com/Twometer/vf60-rs/blob/main/examples/hello_world.rs)
- [Read device info](https://github.com/Twometer/vf60-rs/blob/main/examples/device_info.rs)
## License
Licensed under the [MIT License](https://github.com/Twometer/vf60-rs/blob/main/LICENSE)