mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 04:06:45 +01:00
keymap macros
This commit is contained in:
parent
d39cce271f
commit
a50e022ab6
8 changed files with 233 additions and 199 deletions
10
src/main.rs
10
src/main.rs
|
|
@ -13,8 +13,8 @@ pub mod config;
|
|||
pub mod layout;
|
||||
pub mod time;
|
||||
|
||||
use crate::device::{Sequencer, Transport};
|
||||
use crate::layout::Rows;
|
||||
use crate::device::*;
|
||||
use crate::layout::*;
|
||||
|
||||
fn main () -> Result<(), Box<dyn Error>> {
|
||||
let _cli = cli::Cli::parse();
|
||||
|
|
@ -33,8 +33,12 @@ fn main () -> Result<(), Box<dyn Error>> {
|
|||
//])?),
|
||||
//])),
|
||||
//Box::new(Mixer::new("Mixer#000")?),
|
||||
Box::new(Sequencer::new("Melody#000")?),
|
||||
Box::new(Transport::new("Transport")?),
|
||||
Box::new(Columns::new(true, vec![
|
||||
Box::new(Sequencer::new("Melody#000")?),
|
||||
Box::new(Sequencer::new("Melody#001")?),
|
||||
Box::new(Sequencer::new("Rhythm#000")?),
|
||||
])),
|
||||
//Box::new(Sequencer::new("Rhythm#000")?),
|
||||
]))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue