working
This commit is contained in:
parent
87b882b586
commit
c1b1f2106a
|
@ -3,16 +3,12 @@ name = "pi-frame-server"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[features]
|
|
||||||
gui = []
|
|
||||||
spi = ["dep:epd-waveshare", "dep:linux-embedded-hal"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.86"
|
||||||
clap = { version = "4.5.7", features = ["derive"] }
|
clap = { version = "4.5.7", features = ["derive"] }
|
||||||
epd-waveshare = { git = "https://github.com/caemor/epd-waveshare.git", optional = true }
|
epd-waveshare = { git = "https://github.com/caemor/epd-waveshare.git" }
|
||||||
image = "0.25.1"
|
image = "0.25.1"
|
||||||
linux-embedded-hal = { version = "0.4.0", optional = true }
|
linux-embedded-hal = { version = "0.4.0" }
|
||||||
num-traits = "0.2.19"
|
num-traits = "0.2.19"
|
||||||
palette = "0.7.6"
|
palette = "0.7.6"
|
||||||
rayon = "1.10.0"
|
rayon = "1.10.0"
|
||||||
|
|
6
build.sh
Executable file
6
build.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set +x
|
||||||
|
cross build --target aarch64-unknown-linux-gnu
|
||||||
|
rsync -aczP target/aarch64-unknown-linux-gnu/debug/pi-frame-server 192.168.0.186:
|
||||||
|
# scp target/aarch64-unknown-linux-gnu/debug/pi-frame-server 192.168.0.186:
|
||||||
|
ssh 192.168.0.186 ./pi-frame-server load
|
88
src/display.rs
Normal file
88
src/display.rs
Normal file
|
@ -0,0 +1,88 @@
|
||||||
|
use epd_waveshare::{epd7in3f::Epd7in3f, prelude::WaveshareDisplay};
|
||||||
|
use linux_embedded_hal::spidev::SpiModeFlags;
|
||||||
|
use linux_embedded_hal::spidev::SpidevOptions;
|
||||||
|
use linux_embedded_hal::{CdevPin, Delay, SpidevBus, SpidevDevice};
|
||||||
|
|
||||||
|
use linux_embedded_hal::gpio_cdev::{Chip, LineRequestFlags};
|
||||||
|
use anyhow::Result;
|
||||||
|
|
||||||
|
pub fn demo() -> Result<()> {
|
||||||
|
let mut spi = SpidevDevice::open("/dev/spidev0.0")?;
|
||||||
|
let spi_options = SpidevOptions::new()
|
||||||
|
.bits_per_word(8)
|
||||||
|
.max_speed_hz(10_000_000)
|
||||||
|
.mode(SpiModeFlags::SPI_MODE_0)
|
||||||
|
.build();
|
||||||
|
spi.configure(&spi_options)?;
|
||||||
|
let mut gpiochip = Chip::new("/dev/gpiochip0")?;
|
||||||
|
let busy_pin = CdevPin::new(gpiochip.get_line(24)?.request(
|
||||||
|
LineRequestFlags::INPUT,
|
||||||
|
0,
|
||||||
|
"frametool",
|
||||||
|
)?)?;
|
||||||
|
let dc_pin = CdevPin::new(gpiochip.get_line(25)?.request(
|
||||||
|
LineRequestFlags::OUTPUT,
|
||||||
|
0,
|
||||||
|
"frametool",
|
||||||
|
)?)?;
|
||||||
|
let rst_pin = CdevPin::new(gpiochip.get_line(17)?.request(
|
||||||
|
LineRequestFlags::OUTPUT,
|
||||||
|
0,
|
||||||
|
"frametool",
|
||||||
|
)?)?;
|
||||||
|
let mut delay = Delay {};
|
||||||
|
|
||||||
|
let mut panel = Epd7in3f::new(&mut spi, busy_pin, dc_pin, rst_pin, &mut delay, None)?;
|
||||||
|
panel.show_7block(&mut spi, &mut delay)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
pub struct DisplayWrapper {
|
||||||
|
spi: SpidevDevice,
|
||||||
|
gpiochip: Chip,
|
||||||
|
delay: Delay,
|
||||||
|
panel: Epd7in3f<SpidevDevice, CdevPin, CdevPin, CdevPin, Delay>
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DisplayWrapper {
|
||||||
|
pub fn new() -> Result<DisplayWrapper> {
|
||||||
|
let mut spi = SpidevDevice::open("/dev/spidev0.0")?;
|
||||||
|
let spi_options = SpidevOptions::new()
|
||||||
|
.bits_per_word(8)
|
||||||
|
.max_speed_hz(10_000_000)
|
||||||
|
.mode(SpiModeFlags::SPI_MODE_0)
|
||||||
|
.build();
|
||||||
|
spi.configure(&spi_options)?;
|
||||||
|
|
||||||
|
let mut gpiochip = Chip::new("/dev/gpiochip0")?;
|
||||||
|
let busy_pin = CdevPin::new(gpiochip.get_line(24)?.request(
|
||||||
|
LineRequestFlags::INPUT,
|
||||||
|
0,
|
||||||
|
"frametool",
|
||||||
|
)?)?;
|
||||||
|
let dc_pin = CdevPin::new(gpiochip.get_line(25)?.request(
|
||||||
|
LineRequestFlags::OUTPUT,
|
||||||
|
0,
|
||||||
|
"frametool",
|
||||||
|
)?)?;
|
||||||
|
let rst_pin = CdevPin::new(gpiochip.get_line(17)?.request(
|
||||||
|
LineRequestFlags::OUTPUT,
|
||||||
|
0,
|
||||||
|
"frametool",
|
||||||
|
)?)?;
|
||||||
|
let mut delay = Delay {};
|
||||||
|
let panel = Epd7in3f::new(&mut spi, busy_pin, dc_pin, rst_pin, &mut delay, None)?;
|
||||||
|
|
||||||
|
Ok(DisplayWrapper {
|
||||||
|
spi,
|
||||||
|
gpiochip,
|
||||||
|
delay,
|
||||||
|
panel
|
||||||
|
})
|
||||||
|
}
|
||||||
|
pub fn display(&mut self, buf: &[u8]) -> Result<()>{
|
||||||
|
self.panel.update_and_display_frame(&mut self.spi, buf, &mut self.delay)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,8 +1,7 @@
|
||||||
use image::ColorType::Rgb8;
|
|
||||||
|
|
||||||
use image::RgbImage;
|
use image::RgbImage;
|
||||||
|
|
||||||
use palette::{cast::FromComponents, color_difference::EuclideanDistance, FromColor, IntoColor, Oklab, Srgb};
|
use palette::{cast::FromComponents, color_difference::Ciede2000, IntoColor, Lab, Srgb};
|
||||||
|
|
||||||
/// Palette used on the display; pixels can be one of these colors.
|
/// Palette used on the display; pixels can be one of these colors.
|
||||||
///
|
///
|
||||||
|
@ -41,9 +40,9 @@ pub enum DisplayColor {
|
||||||
Orange,
|
Orange,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<Srgb> for DisplayColor {
|
impl From<DisplayColor> for Srgb {
|
||||||
fn into(self) -> Srgb {
|
fn from(value: DisplayColor) -> Self {
|
||||||
DISPLAY_PALETTE[self as usize]
|
DISPLAY_PALETTE[value as usize]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,34 +59,62 @@ impl DisplayColor {
|
||||||
_ => panic!("unexpected DisplayColor {}", value),
|
_ => panic!("unexpected DisplayColor {}", value),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
fn into_byte(color1: Self, color2: Self) -> u8 {
|
||||||
|
let upper: u8 = color1.into();
|
||||||
|
let lower: u8 = color2.into();
|
||||||
|
upper << 4 | lower
|
||||||
|
}
|
||||||
|
}
|
||||||
|
impl From<DisplayColor> for u8 {
|
||||||
|
fn from(value: DisplayColor) -> Self {
|
||||||
|
value as u8
|
||||||
|
}
|
||||||
|
}
|
||||||
/// Buffer to be sent to the EInk display.
|
/// Buffer to be sent to the EInk display.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct EInkBuffer {
|
pub struct EInkBuffer(Vec<DisplayColor>);
|
||||||
data: Vec<DisplayColor>,
|
|
||||||
width: usize,
|
|
||||||
height: usize,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl EInkBuffer {
|
impl EInkBuffer {
|
||||||
/// Converts the EInkBuffer into data that can be sent over the SPI API
|
pub fn into_display_buffer(&self) -> Vec<u8> {
|
||||||
/// Bin-packs the two 4-bit colors into bytes.
|
let mut buf = Vec::with_capacity(self.0.len()/2);
|
||||||
pub fn into_buffer(&self) -> Vec<u8> {
|
|
||||||
vec![]
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn new(width: usize, height: usize) -> EInkBuffer {
|
for colors in self.0.chunks_exact(2) {
|
||||||
EInkBuffer {
|
buf.push(DisplayColor::into_byte(colors[0], colors[1]));
|
||||||
data: vec![DisplayColor::Black; width * height],
|
|
||||||
width,
|
|
||||||
height,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
buf
|
||||||
|
}
|
||||||
|
pub fn new(width: usize, height: usize) -> Self {
|
||||||
|
let v = vec![DisplayColor::Black; width * height];
|
||||||
|
EInkBuffer(v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// impl EInkBuffer {
|
||||||
|
// /// Converts the EInkBuffer into data that can be sent over the SPI API
|
||||||
|
// /// Bin-packs the two 4-bit colors into bytes.
|
||||||
|
// pub fn into_buffer(&self) -> Vec<u8> {
|
||||||
|
// vec![]
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// pub fn new(width: usize, height: usize) -> EInkBuffer {
|
||||||
|
// EInkBuffer {
|
||||||
|
// data: vec![DisplayColor::Black; width * height],
|
||||||
|
// width,
|
||||||
|
// height,
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// pub fn set(&mut self, x: usize, y: usize, value: DisplayColor) {
|
||||||
|
// self.data[x + y * self.width] = value;
|
||||||
|
// }
|
||||||
|
// pub fn get(&self, x:usize, y:usize) -> DisplayColor {
|
||||||
|
// self.data[x
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
pub trait Ditherer {
|
pub trait Ditherer {
|
||||||
fn dither(&self, img: &RgbImage) -> EInkBuffer;
|
fn dither(&self, img: &RgbImage, output: &mut EInkBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
// fn color_distance(c1: LinSrgb, c2: LinSrgb) -> f32 {
|
// fn color_distance(c1: LinSrgb, c2: LinSrgb) -> f32 {
|
||||||
|
@ -101,13 +128,14 @@ pub trait Ditherer {
|
||||||
/// Find the closest approximate palette color to the given sRGB value.
|
/// Find the closest approximate palette color to the given sRGB value.
|
||||||
/// This uses euclidian distance in linear space.
|
/// This uses euclidian distance in linear space.
|
||||||
pub fn nearest_neighbor(color: Srgb) -> (DisplayColor, f32) {
|
pub fn nearest_neighbor(color: Srgb) -> (DisplayColor, f32) {
|
||||||
|
let input: Lab = color.into_color();
|
||||||
|
|
||||||
let (nearest, dist) = DISPLAY_PALETTE
|
let (nearest, dist) = DISPLAY_PALETTE
|
||||||
.iter()
|
.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.map(|(idx, p_color)| {
|
.map(|(idx, p_color)| {
|
||||||
let lab: Oklab = p_color.clone().into_color();
|
let c: Lab = (*p_color).into_color();
|
||||||
(idx, color.distance(p_color.into_format()))
|
(idx, input.difference(c))
|
||||||
})
|
})
|
||||||
.min_by(|(_, a), (_, b)| a.total_cmp(b))
|
.min_by(|(_, a), (_, b)| a.total_cmp(b))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
@ -117,14 +145,18 @@ pub fn nearest_neighbor(color: Srgb) -> (DisplayColor, f32) {
|
||||||
pub struct NNDither();
|
pub struct NNDither();
|
||||||
|
|
||||||
impl Ditherer for NNDither {
|
impl Ditherer for NNDither {
|
||||||
fn dither(&self, img: &RgbImage) -> EInkBuffer {
|
fn dither(&self, img: &RgbImage, output: &mut EInkBuffer) {
|
||||||
assert!(img.width() == 800);
|
assert!(img.width() == 800);
|
||||||
assert!(img.height() == 480);
|
assert!(img.height() == 480);
|
||||||
let mut buf = EInkBuffer::new(800, 480);
|
|
||||||
// img.enumerate_pixels().for_each(|(x, y, pix)| {
|
// sRGB view into the given image. zero copy!
|
||||||
// buf[x + y * 800] = nearest_neighbor(Srgb::from_components());
|
|
||||||
// });
|
|
||||||
let srgb = <&[Srgb<u8>]>::from_components(&**img);
|
let srgb = <&[Srgb<u8>]>::from_components(&**img);
|
||||||
buf
|
|
||||||
|
for (idx, pixel) in srgb.iter().enumerate() {
|
||||||
|
let (n, _) = nearest_neighbor(pixel.into_format());
|
||||||
|
output.0[idx] = n;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
51
src/main.rs
51
src/main.rs
|
@ -1,9 +1,12 @@
|
||||||
use clap::{Args, Parser, Subcommand};
|
pub mod display;
|
||||||
use epd_waveshare::{epd7in3f::Epd7in3f, prelude::WaveshareDisplay};
|
|
||||||
|
|
||||||
pub mod imageproc;
|
pub mod imageproc;
|
||||||
|
|
||||||
/// The main
|
use crate::display::DisplayWrapper;
|
||||||
|
use crate::imageproc::{Ditherer, EInkBuffer, NNDither};
|
||||||
|
use clap::{Parser, Subcommand};
|
||||||
|
use image::RgbImage;
|
||||||
|
|
||||||
|
/// Display images over
|
||||||
#[derive(Debug, Parser)]
|
#[derive(Debug, Parser)]
|
||||||
#[command(version, about)]
|
#[command(version, about)]
|
||||||
struct Cli {
|
struct Cli {
|
||||||
|
@ -14,47 +17,25 @@ struct Cli {
|
||||||
#[derive(Debug, Subcommand)]
|
#[derive(Debug, Subcommand)]
|
||||||
enum Command {
|
enum Command {
|
||||||
/// Load a single image
|
/// Load a single image
|
||||||
Load,
|
Show,
|
||||||
/// Start the HTTP sever
|
/// Start the HTTP sever
|
||||||
Serve,
|
Serve,
|
||||||
}
|
}
|
||||||
|
|
||||||
use linux_embedded_hal::spidev::SpidevOptions;
|
|
||||||
use linux_embedded_hal::spidev::SpiModeFlags;
|
|
||||||
use linux_embedded_hal::{CdevPin, Delay, SpidevBus, SpidevDevice};
|
|
||||||
|
|
||||||
use linux_embedded_hal::gpio_cdev::{Chip, LineRequestFlags};
|
|
||||||
|
|
||||||
fn main() -> anyhow::Result<()> {
|
fn main() -> anyhow::Result<()> {
|
||||||
let cli = Cli::parse();
|
let cli = Cli::parse();
|
||||||
println!("CLI {cli:?}");
|
println!("CLI {cli:?}");
|
||||||
if let Command::Load = cli.command {
|
|
||||||
println!("loading");
|
|
||||||
|
|
||||||
let mut spi = SpidevDevice::open("/dev/spidev0.0")?;
|
if let Command::Show = cli.command {
|
||||||
let spi_options = SpidevOptions::new().bits_per_word(8).max_speed_hz(10_000_000).mode(SpiModeFlags::SPI_MODE_0).build();
|
let img: RgbImage = image::io::Reader::open("myimage.png")?.decode()?.into();
|
||||||
spi.configure(&spi_options)?;
|
let mut display = DisplayWrapper::new()?;
|
||||||
let mut gpiochip = Chip::new("/dev/gpiochip0")?;
|
|
||||||
let busy_pin = CdevPin::new(gpiochip.get_line(24)?.request(
|
|
||||||
LineRequestFlags::INPUT,
|
|
||||||
0,
|
|
||||||
"frametool",
|
|
||||||
)?)?;
|
|
||||||
let dc_pin = CdevPin::new(gpiochip.get_line(25)?.request(
|
|
||||||
LineRequestFlags::OUTPUT,
|
|
||||||
0,
|
|
||||||
"frametool",
|
|
||||||
)?)?;
|
|
||||||
let rst_pin = CdevPin::new(gpiochip.get_line(17)?.request(
|
|
||||||
LineRequestFlags::OUTPUT,
|
|
||||||
0,
|
|
||||||
"frametool",
|
|
||||||
)?)?;
|
|
||||||
let mut delay = Delay { };
|
|
||||||
|
|
||||||
let mut panel = Epd7in3f::new(&mut spi, busy_pin, dc_pin, rst_pin, &mut delay, None)?;
|
let mut eink_buf = EInkBuffer::new(800, 480);
|
||||||
panel.show_7block(&mut spi, &mut delay)?;
|
let dither = NNDither {};
|
||||||
|
|
||||||
|
dither.dither(&img, &mut eink_buf);
|
||||||
|
let raw_buf = eink_buf.into_display_buffer();
|
||||||
|
display.display(&raw_buf)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in a new issue