Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jimwins/lcdpoled
Daemon that listens for input and displays it on a LCD pole display
https://github.com/jimwins/lcdpoled
Last synced: 17 days ago
JSON representation
Daemon that listens for input and displays it on a LCD pole display
- Host: GitHub
- URL: https://github.com/jimwins/lcdpoled
- Owner: jimwins
- License: apache-2.0
- Created: 2013-12-03T06:43:30.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-05-02T01:50:03.000Z (7 months ago)
- Last Synced: 2024-05-02T17:28:39.907Z (7 months ago)
- Language: Rust
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE-APACHE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# lcdpoled
[![Crates.io](https://img.shields.io/crates/v/lcdpoled.svg)](https://crates.io/crates/lcdpoled)
[![Docs.rs](https://docs.rs/lcdpoled/badge.svg)](https://docs.rs/lcdpoled)
[![CI](https://github.com/jimwins/lcdpoled/workflows/CI/badge.svg)](https://github.com/jimwins/lcdpoled/actions)This utility knows how to push text to a Logic Controls line display device (also
known as a pole display).It uses [rusb](https://github.com/a1ien/rusb), a safe Rust wrapper for libusb,
so it should work on Linux, macOS, and Windows, although only Linux has been
tested.## Installation
### Cargo
* Install the rust toolchain in order to have cargo installed by following
[this](https://www.rust-lang.org/tools/install) guide.
* run `cargo install lcdpoled`### Access to USB as a regular user on Linux
Your mileage may vary, but to grant myself access to the USB device as an
ordinary user on a Raspberry Pi system, I needed to create
`/etc/udev/rules.d/50-local.rules` with the following line:```
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0fa8", ATTRS{idProduct}=="a090", GROUP="users", MODE="0666"
```## License
Licensed under either of
* Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)at your option.
Please note that libusb is licensed under the LGPL, so depending on how you
build and link `lcdpoled` you may have some obligations under that license.## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.See [CONTRIBUTING.md](CONTRIBUTING.md).