You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/BPMOscControler.h
+6
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,11 @@ class BPMOscControler
29
29
public:
30
30
BPMOscControler(OSCNetworkManager& osc);
31
31
32
+
// Getter/Setter for mute
33
+
boolgetBPMMute() { return m_bpmMute; }
34
+
voidsetBPMMute(bool mute);
35
+
voidtoggleBPMMute();
36
+
32
37
// Called by the bpm detector to make the controller send the new bpm to the clients
33
38
voidtransmitBPM(float bpm);
34
39
@@ -49,6 +54,7 @@ class BPMOscControler
49
54
50
55
51
56
protected:
57
+
bool m_bpmMute; // If the bpm osc is muted
52
58
OSCNetworkManager& m_osc; // The network manager to send network signals thorugh
53
59
QStringList m_oscCommands; // The osc messages to be sent on a tempo changed. Delivered as finished strings with the <BPM> (<BPM1-2>, <BPM4> etc. for fractions from 1/4 to 4) qualifier to be changed. The message is generated in the qml because thats the way tim did it with the other osc messages
The Sound2Light tool converts live audio signals to trigger events that can be sent as OSC messages. It can reproduce the sound-to-light function of the NT/NTX consoles with systems of the Eos-, Cobalt- and ColorSource-family. It can also be remotely controlled by OSC.
4
+
5
+
## About this ETCLabs Project
6
+
The Sound2Light Tool is open-source software designed to interact with Electronic Theatre Controls products. This is not official ETC software.
7
+
ETC Support is not familiar with this software and will not be able to assist if issues arise.
8
+
9
+
We also welcome pull requests for bug fixes and feature additions.
10
+
11
+
# Download
12
+
13
+
The current release for Windows and Mac is available here: [Download](https://github.com/ElectronicTheatreControlsLabs/Sound2Light/releases)
14
+
15
+
The manual can be found here: [Manual](https://github.com/ElectronicTheatreControlsLabs/Sound2Light/blob/master/doc/Sound2Light_Tool_Manual_en.pdf)
0 commit comments