Remove println from example

This commit is contained in:
Luke D. Jones
2022-08-25 18:29:53 +12:00
parent a8a99ac1d1
commit f378c54815

View File

@@ -48,9 +48,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
loop {
seq.next_state(&layout);
let packets = seq.create_packets();
println!("{:#0x?}", &packets[0]);
client.proxies().led().per_key_raw(packets)?;
std::thread::sleep(std::time::Duration::from_millis(300));
std::thread::sleep(std::time::Duration::from_millis(60));
}
}