bleak/src/main.rs

102 lines
3.6 KiB
Rust
Raw Normal View History

2019-12-30 17:59:00 -06:00
// std lib imports
use std::{thread, time};
2019-12-28 21:43:13 -06:00
// actual third party library being imported
2020-01-23 08:09:16 -06:00
use rppal::spi::{Bus, Mode, SlaveSelect, Spi};
2020-03-31 22:45:37 -05:00
use smart_leds::{RGB8, SmartLedsWrite, brightness};
2020-01-23 08:09:16 -06:00
use ws2812_spi::Ws2812;
2019-12-28 21:43:13 -06:00
// local files that need to be imported
mod app;
mod config;
mod generate;
2020-01-23 08:09:16 -06:00
const NUM_LEDS: usize = 150;
2019-12-26 21:32:42 -06:00
fn main() {
let spi = Spi::new(Bus::Spi0, SlaveSelect::Ss0, 3_000_000, Mode::Mode0)
.unwrap();
2020-01-23 08:09:16 -06:00
let mut ws = Ws2812::new(spi);
let mut configuration = config::init_config();
let mut is_headless: bool = false;
loop {
println!("{:?}", configuration);
2020-01-23 08:09:16 -06:00
let power_text = configuration.get_power_status();
configuration.change_power(&power_text);
let tvpower = app::match_to_power_status(power_text);
2020-01-23 08:09:16 -06:00
match tvpower {
app::TVPower::Off => {
if is_headless == false {
is_headless = true;
let color = RGB8::new(0, 0, 0);
let mut data = [RGB8::default(); NUM_LEDS];
for i in 0..NUM_LEDS {
data[i] = color;
}
ws.write(brightness(data.iter().cloned(), 32))
.unwrap();
}
},
app::TVPower::On => {
if false == configuration.is_change_app() {
is_headless = false;
let app_text = configuration.get_app_status();
configuration.change_active_app(&app_text);
let activeapp = app::match_to_app(app_text);
match activeapp {
app::ActiveApp::Roku => {
let data = change_color(&255, &0, &255);
ws.write(brightness(data.iter().cloned(), 10))
.unwrap();
},
app::ActiveApp::Hulu => {
let data = change_color(&51, &255, &85);
ws.write(brightness(data.iter().cloned(), 32))
.unwrap();
},
app::ActiveApp::Netflix => {
let data = change_color(&255, &77, &77);
ws.write(brightness(data.iter().cloned(), 32))
.unwrap();
},
app::ActiveApp::AmazonPrime => println!("The light are light blue!"),
app::ActiveApp::Spotify => {
let data = change_color(&51, &255, &85);
ws.write(brightness(data.iter().cloned(), 32))
.unwrap();
},
app::ActiveApp::Plex => {
let data = change_color(&255, &187, &51);
ws.write(brightness(data.iter().cloned(), 32))
.unwrap();
},
2020-04-03 21:34:52 -05:00
_ => println!("We don't know what app is running right now..."),
}
}
},
_ => println!("We don't know what the power status of the TV is..."),
2020-01-03 22:15:13 -06:00
}
let sec = time::Duration::from_secs(1);
2019-12-30 17:59:00 -06:00
thread::sleep(sec);
}
}
fn change_color(num_one: &u8, num_two: &u8, num_three: &u8) -> [RGB8; 150] {
let color = RGB8::new(*num_one, *num_two, *num_three);
let mut data = [RGB8::default(); NUM_LEDS];
for i in 0..NUM_LEDS {
data[i] = color;
}
data
2020-01-23 08:09:16 -06:00
}