20 lines
500 B
Rust
20 lines
500 B
Rust
//! Example for how to use the WebSocket connection
|
|
|
|
use servicepoint::*;
|
|
|
|
fn main() {
|
|
let uri = "ws://localhost:8080".parse().unwrap();
|
|
let connection = WebsocketConnection::open(uri).unwrap();
|
|
|
|
connection.send(ClearCommand).unwrap();
|
|
|
|
let mut pixels = Bitmap::max_sized();
|
|
pixels.fill(true);
|
|
|
|
let command = BitmapCommand {
|
|
origin: Origin::ZERO,
|
|
bitmap: pixels,
|
|
compression: CompressionCode::default(),
|
|
};
|
|
connection.send(command).unwrap();
|
|
}
|