use std::time::Duration;
use alienrgb::{Commands, Elc};
fn main() {
let mut elc = Elc::new();
let status = elc.execute(&Commands::Query(alienrgb::QuerySub::AnimationCount));
println!("{status:#?}");
std::thread::sleep(Duration::from_secs(1));
let status = elc.execute(&Commands::Query(alienrgb::QuerySub::Status));
println!("{status:#?}");
}