plottery_server_lib 0.7.0

library for the communication with the pen-plotter server of Plottery, a creative coding framework for generative vector graphics and pen plotting.
Documentation
use serde::{Deserialize, Serialize};

pub mod midi;
pub mod plot_setting;
pub mod server_state;
pub mod task;

pub use midi::*;
pub use plot_setting::*;
pub use server_state::*;
pub use task::*;

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
pub enum Axis {
    X,
    Y,
    Head,
}

// TODO: config
pub static HOST_PORT: u16 = 29797;
pub static HOST_NAME: &str = "otter.local";