-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjuce_dmx.h
62 lines (45 loc) · 1.68 KB
/
juce_dmx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
==============================================================================
==============================================================================
*/
/*******************************************************************************
The block below describes the properties of this module, and is read by
the Projucer to automatically generate project code that uses it.
For details about the syntax and how to create or use a module, see the
JUCE Module Format.txt file.
BEGIN_JUCE_MODULE_DECLARATION
ID: juce_dmx
vendor: benkuper
version: 1.0.0
name: DMX
description: DMX Handling, using OrganicUI
website: https://github.com/benkuper/juce_dmx
license: GPLv3
dependencies: juce_organicui, juce_serial
END_JUCE_MODULE_DECLARATION
*******************************************************************************/
#pragma once
#define ORGANIC_DMX_H_INCLUDED
//==============================================================================
#ifdef _MSC_VER
#pragma warning (push)
// Disable warnings for long class names, padding, and undefined preprocessor definitions.
#pragma warning (disable: 4251 4786 4668 4820)
#endif
#include <juce_organicui/juce_organicui.h>
#include <juce_serial/juce_serial.h>
using namespace juce;
#include "DMXManager.h"
#include "DMXUniverse.h"
#include "DMXUniverseManager.h"
#include "device/DMXDevice.h"
#include "device/DMXSerialDevice.h"
#include "device/DMXArtNetDevice.h"
#include "device/DMXEnttecProDevice.h"
#include "device/DMXOpenUSBDevice.h"
extern "C"
{
#include "device/sacn/e131.h"
}
#include "device/DMXSACNDevice.h"
#include "ui/DMXUniverseEditor.h"