gled 2.6.3

gled is an application for creating animations and effects on artnet or wled light installations
1
2
3
4
5
6
7
8
9
10
11
12
pub mod apc40_mk2;
pub mod input;
pub mod output;
pub mod state;

use std::thread::spawn;

pub fn start_thread() {
    spawn(state::start);
    spawn(input::discover);
    spawn(output::discover);
}