
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.
main.h@19:e8b826ab28a8, 2016-03-09 (annotated)
- Committer:
- Ayrton_L
- Date:
- Wed Mar 09 01:24:39 2016 +0000
- Revision:
- 19:e8b826ab28a8
- Parent:
- 18:8deebaf09ba3
- Child:
- 20:bcaba3ecc235
Optimized Screen.h (OOP Class)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Ayrton_L | 4:cb44bb2eb2f2 | 1 | #ifndef MAIN_H |
Ayrton_L | 4:cb44bb2eb2f2 | 2 | #define MAIN_H |
Ayrton_L | 4:cb44bb2eb2f2 | 3 | |
Ayrton_L | 15:b0efafcfbb03 | 4 | #define _CRT_SECURE_NO_WARNINGS |
Ayrton_L | 15:b0efafcfbb03 | 5 | |
Ayrton_L | 4:cb44bb2eb2f2 | 6 | #include "mbed.h" |
Ayrton_L | 6:d48f410e7a2d | 7 | #include "stdint.h" |
Ayrton_L | 4:cb44bb2eb2f2 | 8 | |
Ayrton_L | 11:9d4a048ba26c | 9 | #define DMX_CHANNELS 512 |
Ayrton_L | 10:33faa2c71dad | 10 | |
Ayrton_L | 11:9d4a048ba26c | 11 | uint8_t I8_Data1[DMX_CHANNELS]; |
Ayrton_L | 11:9d4a048ba26c | 12 | uint8_t I8_Data2[DMX_CHANNELS]; |
Ayrton_L | 11:9d4a048ba26c | 13 | uint8_t I8_Data3[DMX_CHANNELS]; |
Ayrton_L | 19:e8b826ab28a8 | 14 | |
Ayrton_L | 13:81243bd96dfb | 15 | |
Ayrton_L | 13:81243bd96dfb | 16 | #include "DMX.h" |
Ayrton_L | 15:b0efafcfbb03 | 17 | #include "ArtNet.h" |
Ayrton_L | 19:e8b826ab28a8 | 18 | #include "Screen.h" |
Ayrton_L | 10:33faa2c71dad | 19 | |
Ayrton_L | 13:81243bd96dfb | 20 | |
Ayrton_L | 19:e8b826ab28a8 | 21 | /*void V_Powerup(); |
Ayrton_L | 19:e8b826ab28a8 | 22 | void V_ShowSTDMenuScreen();*/ |
Ayrton_L | 10:33faa2c71dad | 23 | |
Ayrton_L | 8:b58bcb8d960b | 24 | #endif |
Ayrton_L | 8:b58bcb8d960b | 25 | |
Ayrton_L | 6:d48f410e7a2d | 26 | |
Ayrton_L | 4:cb44bb2eb2f2 | 27 | |
Ayrton_L | 4:cb44bb2eb2f2 | 28 |