48 lines
1.2 KiB
Rust
48 lines
1.2 KiB
Rust
use std::time::Duration;
|
|
|
|
pub use crate::bit_vec::BitVec;
|
|
pub use crate::byte_grid::ByteGrid;
|
|
#[cfg(feature = "c_api")]
|
|
pub use crate::c_slice::CByteSlice;
|
|
pub use crate::command::{Brightness, Command, Offset, Origin};
|
|
pub use crate::compression_code::CompressionCode;
|
|
pub use crate::connection::Connection;
|
|
pub use crate::data_ref::DataRef;
|
|
pub use crate::grid::Grid;
|
|
pub use crate::packet::{Header, Packet, Payload};
|
|
pub use crate::pixel_grid::PixelGrid;
|
|
|
|
mod bit_vec;
|
|
mod byte_grid;
|
|
mod c_slice;
|
|
mod command;
|
|
mod command_code;
|
|
mod compression;
|
|
mod compression_code;
|
|
mod connection;
|
|
mod data_ref;
|
|
mod grid;
|
|
mod packet;
|
|
mod pixel_grid;
|
|
|
|
/// size of a single tile in one dimension
|
|
pub const TILE_SIZE: usize = 8;
|
|
|
|
/// tile count in the x-direction
|
|
pub const TILE_WIDTH: usize = 56;
|
|
|
|
/// tile count in the y-direction
|
|
pub const TILE_HEIGHT: usize = 20;
|
|
|
|
/// screen width in pixels
|
|
pub const PIXEL_WIDTH: usize = TILE_WIDTH * TILE_SIZE;
|
|
|
|
/// screen height in pixels
|
|
pub const PIXEL_HEIGHT: usize = TILE_HEIGHT * TILE_SIZE;
|
|
|
|
/// pixel count on whole screen
|
|
pub const PIXEL_COUNT: usize = PIXEL_WIDTH * PIXEL_HEIGHT;
|
|
|
|
/// Actual hardware limit is around 28-29ms/frame. Rounded up for less dropped packets.
|
|
pub const FRAME_PACING: Duration = Duration::from_millis(30);
|