In CCCB, there is a big pixel matrix hanging on the wall. It is called "Service Point Display" or "Airport Display".
This crate contains a library for parsing, encoding and sending packets to this display via UDP. The library itself is written in Rust, but can be used from multiple languages via language bindings.
This project moved to git.berlin.ccc.de/servicepoint/servicepoint. The GitHub repository remains available as a mirror.
// everything you need is in the top-level
use servicepoint::*;
fn main() {
// establish connection
let connection = Connection::open("172.23.42.29:2342")
.expect("connection failed");
// clear screen content
connection.send(Command::Clear)
.expect("send failed");
}
More examples are available in the crate.
Execute cargo run --example
for a list of available examples and cargo run --example <name>
to run one.
cargo add servicepoint
or
[dependencies]
servicepoint = "0.13.2"
This library can be used for creative project or just to play around with the display. A decent coverage by unit tests prevents major problems and I also test this with my own projects, which mostly use up-to-date versions.
That being said, the API is still being worked on. Expect breaking changes with every minor version bump. There should be no breaking changes in patch releases, but there may also be features hiding in those.
All of this means for you: please specify the full version including patch in your Cargo.toml until 1.0 is released.
This library has multiple optional dependencies. You can choose to (not) include them by toggling the related features.
Name | Default | Description | Dependencies |
---|---|---|---|
protocol_udp | true | Connection::Udp |
|
cp437 | true | Conversion to and from CP-437 | once_cell |
compression_lzma | true | Enable additional compression algo | rust-lzma |
compression_zlib | false | Enable additional compression algo | flate2 |
compression_bzip2 | false | Enable additional compression algo | bzip2 |
compression_zstd | false | Enable additional compression algo | zstd |
protocol_websocket | false | Connection::WebSocket |
tungstenite |
rand | false | impl Distribution<Brightness> for Standard |
rand |
Language | Support level | Repo |
---|---|---|
.NET (C#) | Full | servicepoint-binding-csharp contains bindings and a .csproj to reference |
C | Full | servicepoint-binding-c contains a header and a library to link against |
Ruby | Working | servicepoint-binding-ruby contains bindings |
Python | Unsupported | bindings can be generated from servicepoint-binding-uniffi, tested once |
Go | Unsupported | bindings can be generated from servicepoint-binding-uniffi |
Kotlin | Unsupported | bindings can be generated from servicepoint-binding-uniffi |
Swift | Unsupported | bindings can be generated from servicepoint-binding-uniffi |
- screen simulator (rust): servicepoint-simulator
- A bunch of projects (C): arfst23/ServicePoint, including
- a CLI tool to display image files on the display or use the display as a TTY
- a BSD games robots clone
- a split-flap-display simulator
- animations that play on the display
- tanks game (C#): servicepoint-tanks
- cellular automata slideshow (rust): servicepoint-life
- partial typescript implementation inspired by this library and browser stream: cccb-servicepoint-browser
- a CLI, can also share your screen: servicepoint-cli
To add yourself to the list, open a pull request.
You can also check out awesome-servicepoint for a bigger collection of projects, including some not related to this library.
If you have access, there is even more software linked in the wiki.
See CONTRIBUTING.md.
After servicepoint2
has been merged into servicepoint
, servicepoint2
will not continue to get any updates.