Artnet to DMX

Dependencies:   mbed DMX TextLCD mbed-rtos

/media/uploads/Ayrton_L/dmx.png

Art-NET to DMX converter.

Read Art-NET and process the data so it can be send by 3 XLR3 outputs for DMX. With a 4x20 display you can choose some options. For example what universe you would like on what output.

This is a project we make as our final project of our 2nd year of university. We study Electronics-ICT / Embedded ICT.

We chose for this amazing platform (MBED LPC1768) because it has al the interfaces and pins we need.

Revision:
11:9d4a048ba26c
Parent:
10:33faa2c71dad
Child:
13:81243bd96dfb
--- a/main.h	Tue Mar 08 02:08:34 2016 +0000
+++ b/main.h	Tue Mar 08 02:36:22 2016 +0000
@@ -1,13 +1,14 @@
 #ifndef MAIN_H
 #define MAIN_H
 
-#define DMX_CHANNELS 512
-
 #include "mbed.h"
 #include "stdint.h"
 
+#define DMX_CHANNELS 512
 
-
+uint8_t I8_Data1[DMX_CHANNELS];
+uint8_t I8_Data2[DMX_CHANNELS];
+uint8_t I8_Data3[DMX_CHANNELS];
 
 #include "DMX.h"