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:
35:23656910be93
Parent:
34:fc85eeb84a93
Child:
36:dba7a0094213
diff -r fc85eeb84a93 -r 23656910be93 main.h
--- a/main.h	Thu May 19 14:27:07 2016 +0000
+++ b/main.h	Mon May 23 14:26:36 2016 +0000
@@ -1,7 +1,7 @@
 #ifndef MAIN_H
 #define MAIN_H
 
-#define _CRT_SECURE_NO_WARNINGS
+//#define _CRT_SECURE_NO_WARNINGS
 
 #include "mbed.h"
 #include "rtos.h"
@@ -13,15 +13,14 @@
 #include "Screen.h"
 
 #define FIRMWARE "B-01-10"
-const string S_Menu[] {"Firmware", "Output 1", "Output 2", "Output 3", "IP", "Netmask", "Save"};
+const string S_Menu[] {"Firmware", "Output 1", "Output 2", "Output 3", "Save"};
 
-DMX XLR1(p9);
-DMX XLR2(p13);
-DMX XLR3(p28);
+DMX XLR1(p9, p10);
+DMX XLR2(p13, p14);
+DMX XLR3(p28, p27);
 
 Settings S;
 Screen Sc;
-
 Ethernet eth;
 
 DigitalOut Error1(LED1);
@@ -29,6 +28,7 @@
 DigitalOut Error4(LED3);
 DigitalOut Error8(LED4);
 
+
 InterruptIn PushButton(p5);
 InterruptIn LeftTwist(p6);
 InterruptIn RightTwist(p7);
@@ -47,6 +47,8 @@
 void V_WriteTxt(uint32_t I32_Kolom, uint32_t I32_Rij, char * C_Tekst);
 uint32_t I32_GeneralTxt();
 
+void V_SEND();
+
 #endif