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:
28:4b327f1cb9cb
Child:
29:4a11f841dae1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Settings.h	Fri Mar 18 00:44:33 2016 +0000
@@ -0,0 +1,36 @@
+#ifndef SETTINGS_H
+#define SETTINGs_H
+#include "mbed.h"
+class Settings
+{
+    public:
+        Settings();
+        ~Settings();
+        
+        uint32_t I32_GetUniverse(uint32_t I32_UniKeuze);
+        
+    private:
+        uint32_t I32_Universe[3];
+};
+#endif
+Settings::Settings()
+{
+}
+Settings::~Settings()
+{
+}
+
+uint32_t Settings::I32_GetUniverse(uint32_t I32_UniKeuze)
+{
+    switch (I32_UniKeuze)
+    {
+        case 1:
+            return I32_Universe[0];
+        case 2:
+            return I32_Universe[1];
+        case 3:
+            return I32_Universe[2];
+        default:
+            return 0;
+    }
+}
\ No newline at end of file