
Artnet to DMX
Dependencies: mbed DMX TextLCD mbed-rtos
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.
Diff: main.h
- Revision:
- 15:b0efafcfbb03
- Parent:
- 13:81243bd96dfb
- Child:
- 18:8deebaf09ba3
diff -r 141c9f3b58ee -r b0efafcfbb03 main.h --- a/main.h Tue Mar 08 15:56:47 2016 +0000 +++ b/main.h Tue Mar 08 21:30:42 2016 +0000 @@ -1,6 +1,8 @@ #ifndef MAIN_H #define MAIN_H +#define _CRT_SECURE_NO_WARNINGS + #include "mbed.h" #include "stdint.h" #include "TextLCD.h" @@ -13,6 +15,7 @@ TextLCD lcd(p10, p12, p15, p16, p29, p30); // rs, e, d4-d7 #include "DMX.h" +#include "ArtNet.h" void V_powerup();