| Crates.io | novastar-core |
| lib.rs | novastar-core |
| version | 0.3.1 |
| created_at | 2025-02-03 13:17:20.17+00 |
| updated_at | 2025-08-07 07:38:50.068455+00 |
| description | Rust library for interacting with Novastar LED Screen processors |
| homepage | |
| repository | https://github.com/joele89/novastar-core |
| max_upload_size | |
| id | 1540566 |
| size | 88,258 |
Contains the core functions for interacting with Novastar LED Screen processors
Note only the following functions have been implemented so far;
highest priority todo
use novastar_core;
novastar_core::discover();
if let Ok(controllers) = net::discover() {
for mut controller in controllers {
println!("Hosts {controller:?}");
controller.set_brightness(128).unwrap()
}
}