Driver for the 99 Bugs LED Display (Meme TV). It communicates via SPI with the Mojo FPGA on the display.
```rust mod display; use display::Display; use display::LINEBUFFERSIZE;
fn main() { let mut display = Display::new("/dev/spidev0.0"); let data: [u8; LINEBUFFERSIZE] = [0x00; LINEBUFFERSIZE];
display.write_line(0,0,&data);
display.flush();
println!("Done...");
} ```