now i am just writing things

This commit is contained in:
jane 2021-12-27 19:09:59 -05:00
parent 2de3ecde06
commit 0c828a8cf1
2 changed files with 4 additions and 4 deletions

View File

@ -32,12 +32,12 @@ fn main() {
}); });
loop { loop {
thread::sleep(time::Duration::from_millis(250)); thread::sleep(time::Duration::from_millis(250));
let mut lights = lock.write().unwrap();
let pattern = format_multiline("val 255 150 0"); let pattern = format_multiline("val 255 150 0");
pattern.iter() pattern.iter()
.map(|x| parse_line(x)) .map(|x: &Vec<String>| parse_line((*x).clone()))
.for_each(|res| { .for_each(|res: Result<Box<dyn Pattern>, ParseError>| {
if res.is_ok() { if res.is_ok() {
let mut lights = lock.write().unwrap();
res.unwrap().execute(&mut lights); res.unwrap().execute(&mut lights);
} }
}); });

View File

@ -5,7 +5,7 @@ use std::{
}; };
use std::sync::RwLockWriteGuard; use std::sync::RwLockWriteGuard;
type ParseError = Box<dyn std::error::Error>; pub type ParseError = Box<dyn std::error::Error>;
pub trait Pattern<'a> { pub trait Pattern<'a> {
fn execute(&self, values: &'a mut RwLockWriteGuard<'_, [RawColor; crate::LED_SIZE]>); fn execute(&self, values: &'a mut RwLockWriteGuard<'_, [RawColor; crate::LED_SIZE]>);