git ssb

0+

dinoworm ๐Ÿ› / metronome



Tree: de37e989827890621e4dbd2d5a5493b416130606

Files: de37e989827890621e4dbd2d5a5493b416130606 / src / control.rs

537 bytesRaw
1use std::sync::mpsc::{channel, Sender, Receiver};
2
3use clock;
4
5#[derive(Debug)]
6pub struct Control {
7 pub tx: Sender<ControlMessage>,
8 pub rx: Receiver<ControlMessage>
9}
10
11impl Control {
12 pub fn new() -> Self {
13 let (tx, rx) = channel();
14
15 Self {
16 tx,
17 rx
18 }
19 }
20}
21
22#[derive(Clone, Copy, Debug, Hash)]
23pub enum ControlMessage {
24 Time(clock::ClockTime),
25 Signature(clock::ClockSignature),
26 Start,
27 Stop,
28 TapTempo,
29 SetTempo,
30 NudgeClock,
31 Configure
32}
33
34

Built with git-ssb-web