├── .gitattributes ├── .gitignore ├── DiGiCo console control for d&b Soundscape Guide.pdf ├── EULA.md ├── README.md ├── RELEASE_NOTES.md ├── Resources └── Documentation │ └── Screenshots │ ├── 01.PNG │ ├── 02.PNG │ ├── 03.PNG │ ├── 04.PNG │ ├── 05.PNG │ ├── 06.PNG │ ├── 07.PNG │ ├── 08.PNG │ ├── 09.PNG │ ├── 10.PNG │ ├── 11.PNG │ ├── 12.PNG │ ├── 13.PNG │ └── 14.PNG ├── Tools └── RemoteProtocolBridge │ ├── README.md │ ├── RemoteProtocolBridge.jucer │ ├── Resources │ └── Images │ │ ├── AddDownImage.png │ │ ├── AddNormalImage.png │ │ ├── AddOverImage.png │ │ ├── Bridge.png │ │ ├── Bridge.xcf │ │ ├── Bridge_mobile.png │ │ ├── Bridge_mobile.xcf │ │ ├── RemoveDownImage.png │ │ ├── RemoveNormalImage.png │ │ └── RemoveOverImage.png │ └── Source │ ├── Common.h │ ├── ConfigComponents │ ├── GlobalConfigComponents.cpp │ ├── GlobalConfigComponents.h │ ├── ObjectHandlingConfigComponents.cpp │ ├── ObjectHandlingConfigComponents.h │ ├── ProtocolConfigComponents.cpp │ └── ProtocolConfigComponents.h │ ├── LoggingTarget_Interface.h │ ├── LoggingWindow.cpp │ ├── LoggingWindow.h │ ├── Main.cpp │ ├── MainComponent.cpp │ ├── MainComponent.h │ ├── MainRemoteProtocolBridgeComponent.cpp │ ├── MainRemoteProtocolBridgeComponent.h │ ├── NodeComponent.cpp │ ├── NodeComponent.h │ ├── ObjectDataHandling.cpp │ ├── ObjectDataHandling.h │ ├── ProcessingEngine.cpp │ ├── ProcessingEngine.h │ ├── ProcessingEngineConfig.cpp │ ├── ProcessingEngineConfig.h │ ├── ProcessingEngineNode.cpp │ ├── ProcessingEngineNode.h │ ├── ProtocolComponent.cpp │ ├── ProtocolComponent.h │ ├── ProtocolProcessor │ ├── MIDIProtocolProcessor │ │ ├── MIDIProtocolProcessor.cpp │ │ └── MIDIProtocolProcessor.h │ ├── OCAProtocolProcessor │ │ ├── OCAProtocolProcessor.cpp │ │ └── OCAProtocolProcessor.h │ ├── OSCProtocolProcessor │ │ ├── OSCProtocolProcessor.cpp │ │ ├── OSCProtocolProcessor.h │ │ ├── SenderAwareOSCReceiver.cpp │ │ └── SenderAwareOSCReceiver.h │ ├── ProtocolProcessor_Abstract.cpp │ └── ProtocolProcessor_Abstract.h │ └── RemoteProtocolBridgeCommon.h └── db Soundscape Infos ├── dbaudio-osc-protocol-ds100-1.2.4-en.pdf ├── dbaudio_DS100_Manual_1.4_en.pdf └── dbaudio_TI_501_dbSoundscape_1.6_en-2.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/.gitignore -------------------------------------------------------------------------------- /DiGiCo console control for d&b Soundscape Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/DiGiCo console control for d&b Soundscape Guide.pdf -------------------------------------------------------------------------------- /EULA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/EULA.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/01.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/02.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/03.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/04.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/05.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/05.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/06.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/06.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/07.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/07.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/08.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/08.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/09.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/09.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/10.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/11.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/12.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/12.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/13.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/13.PNG -------------------------------------------------------------------------------- /Resources/Documentation/Screenshots/14.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Resources/Documentation/Screenshots/14.PNG -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/README.md -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/RemoteProtocolBridge.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/RemoteProtocolBridge.jucer -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/AddDownImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/AddDownImage.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/AddNormalImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/AddNormalImage.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/AddOverImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/AddOverImage.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/Bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/Bridge.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/Bridge.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/Bridge.xcf -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/Bridge_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/Bridge_mobile.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/Bridge_mobile.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/Bridge_mobile.xcf -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/RemoveDownImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/RemoveDownImage.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/RemoveNormalImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/RemoveNormalImage.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Resources/Images/RemoveOverImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Resources/Images/RemoveOverImage.png -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/Common.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ConfigComponents/GlobalConfigComponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ConfigComponents/GlobalConfigComponents.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ConfigComponents/GlobalConfigComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ConfigComponents/GlobalConfigComponents.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ConfigComponents/ObjectHandlingConfigComponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ConfigComponents/ObjectHandlingConfigComponents.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ConfigComponents/ObjectHandlingConfigComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ConfigComponents/ObjectHandlingConfigComponents.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ConfigComponents/ProtocolConfigComponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ConfigComponents/ProtocolConfigComponents.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ConfigComponents/ProtocolConfigComponents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ConfigComponents/ProtocolConfigComponents.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/LoggingTarget_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/LoggingTarget_Interface.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/LoggingWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/LoggingWindow.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/LoggingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/LoggingWindow.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/Main.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/MainComponent.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/MainComponent.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/MainRemoteProtocolBridgeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/MainRemoteProtocolBridgeComponent.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/MainRemoteProtocolBridgeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/MainRemoteProtocolBridgeComponent.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/NodeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/NodeComponent.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/NodeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/NodeComponent.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ObjectDataHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ObjectDataHandling.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ObjectDataHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ObjectDataHandling.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProcessingEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProcessingEngine.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProcessingEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProcessingEngine.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProcessingEngineConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProcessingEngineConfig.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProcessingEngineConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProcessingEngineConfig.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProcessingEngineNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProcessingEngineNode.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProcessingEngineNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProcessingEngineNode.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolComponent.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolComponent.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/MIDIProtocolProcessor/MIDIProtocolProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/MIDIProtocolProcessor/MIDIProtocolProcessor.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/MIDIProtocolProcessor/MIDIProtocolProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/MIDIProtocolProcessor/MIDIProtocolProcessor.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OCAProtocolProcessor/OCAProtocolProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OCAProtocolProcessor/OCAProtocolProcessor.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OCAProtocolProcessor/OCAProtocolProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OCAProtocolProcessor/OCAProtocolProcessor.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/OSCProtocolProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/OSCProtocolProcessor.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/OSCProtocolProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/OSCProtocolProcessor.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/SenderAwareOSCReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/SenderAwareOSCReceiver.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/SenderAwareOSCReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/OSCProtocolProcessor/SenderAwareOSCReceiver.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/ProtocolProcessor_Abstract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/ProtocolProcessor_Abstract.cpp -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/ProtocolProcessor/ProtocolProcessor_Abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/ProtocolProcessor/ProtocolProcessor_Abstract.h -------------------------------------------------------------------------------- /Tools/RemoteProtocolBridge/Source/RemoteProtocolBridgeCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/Tools/RemoteProtocolBridge/Source/RemoteProtocolBridgeCommon.h -------------------------------------------------------------------------------- /db Soundscape Infos/dbaudio-osc-protocol-ds100-1.2.4-en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/db Soundscape Infos/dbaudio-osc-protocol-ds100-1.2.4-en.pdf -------------------------------------------------------------------------------- /db Soundscape Infos/dbaudio_DS100_Manual_1.4_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/db Soundscape Infos/dbaudio_DS100_Manual_1.4_en.pdf -------------------------------------------------------------------------------- /db Soundscape Infos/dbaudio_TI_501_dbSoundscape_1.6_en-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbaudio-soundscape/db-Soundscape-control-with-DiGiCo-SD-Consoles/HEAD/db Soundscape Infos/dbaudio_TI_501_dbSoundscape_1.6_en-2.pdf --------------------------------------------------------------------------------