Artnet.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*The MIT License (MIT)
  2. Copyright (c) 2014 Nathanaël Lécaudé
  3. https://github.com/natcl/Artnet, http://forum.pjrc.com/threads/24688-Artnet-to-OctoWS2811
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  18. THE SOFTWARE.
  19. */
  20. #ifndef ARTNET_H
  21. #define ARTNET_H
  22. #include <Arduino.h>
  23. #if defined(ARDUINO_SAMD_ZERO)
  24. #include <WiFi101.h>
  25. #include <WiFiUdp.h>
  26. #elif defined(ESP8266)
  27. #include <ESP8266WiFi.h>
  28. #include <WiFiUdp.h>
  29. #elif defined(ESP32)
  30. #include <WiFi.h>
  31. #include <WiFiUdp.h>
  32. #else
  33. #include <Ethernet.h>
  34. #include <EthernetUdp.h>
  35. #endif
  36. // UDP specific
  37. #define ART_NET_PORT 6454
  38. // Opcodes
  39. #define ART_POLL 0x2000
  40. #define ART_POLL_REPLY 0x2100
  41. #define ART_DMX 0x5000
  42. #define ART_SYNC 0x5200
  43. // Buffers
  44. #define MAX_BUFFER_ARTNET 530
  45. // Packet
  46. #define ART_NET_ID "Art-Net\0"
  47. #define ART_DMX_START 18
  48. struct artnet_reply_s {
  49. uint8_t id[8];
  50. uint16_t opCode;
  51. uint8_t ip[4];
  52. uint16_t port;
  53. uint8_t verH;
  54. uint8_t ver;
  55. uint8_t subH;
  56. uint8_t sub;
  57. uint8_t oemH;
  58. uint8_t oem;
  59. uint8_t ubea;
  60. uint8_t status;
  61. uint8_t etsaman[2];
  62. uint8_t shortname[18];
  63. uint8_t longname[64];
  64. uint8_t nodereport[64];
  65. uint8_t numbportsH;
  66. uint8_t numbports;
  67. uint8_t porttypes[4];//max of 4 ports per node
  68. uint8_t goodinput[4];
  69. uint8_t goodoutput[4];
  70. uint8_t swin[4];
  71. uint8_t swout[4];
  72. uint8_t swvideo;
  73. uint8_t swmacro;
  74. uint8_t swremote;
  75. uint8_t sp1;
  76. uint8_t sp2;
  77. uint8_t sp3;
  78. uint8_t style;
  79. uint8_t mac[6];
  80. uint8_t bindip[4];
  81. uint8_t bindindex;
  82. uint8_t status2;
  83. uint8_t filler[26];
  84. } __attribute__((packed));
  85. class Artnet
  86. {
  87. public:
  88. Artnet();
  89. void begin(byte mac[], byte ip[]);
  90. void begin();
  91. void setBroadcastAuto(IPAddress ip, IPAddress sn);
  92. void setBroadcast(byte bc[]);
  93. void setBroadcast(IPAddress bc);
  94. uint16_t read();
  95. void printPacketHeader();
  96. void printPacketContent();
  97. // Return a pointer to the start of the DMX data
  98. inline uint8_t* getDmxFrame(void)
  99. {
  100. return artnetPacket + ART_DMX_START;
  101. }
  102. inline uint16_t getOpcode(void)
  103. {
  104. return opcode;
  105. }
  106. inline uint8_t getSequence(void)
  107. {
  108. return sequence;
  109. }
  110. inline uint16_t getUniverse(void)
  111. {
  112. return incomingUniverse;
  113. }
  114. inline uint16_t getLength(void)
  115. {
  116. return dmxDataLength;
  117. }
  118. inline IPAddress getRemoteIP(void)
  119. {
  120. return remoteIP;
  121. }
  122. inline void setArtDmxCallback(void (*fptr)(uint16_t universe, uint16_t length, uint8_t sequence, uint8_t* data, IPAddress remoteIP))
  123. {
  124. artDmxCallback = fptr;
  125. }
  126. inline void setArtSyncCallback(void (*fptr)(IPAddress remoteIP))
  127. {
  128. artSyncCallback = fptr;
  129. }
  130. private:
  131. uint8_t node_ip_address[4];
  132. uint8_t id[8];
  133. #if defined(ARDUINO_SAMD_ZERO) || defined(ESP8266) || defined(ESP32)
  134. WiFiUDP Udp;
  135. #else
  136. EthernetUDP Udp;
  137. #endif
  138. struct artnet_reply_s ArtPollReply;
  139. uint8_t artnetPacket[MAX_BUFFER_ARTNET];
  140. uint16_t packetSize;
  141. IPAddress broadcast;
  142. uint16_t opcode;
  143. uint8_t sequence;
  144. uint16_t incomingUniverse;
  145. uint16_t dmxDataLength;
  146. IPAddress remoteIP;
  147. void (*artDmxCallback)(uint16_t universe, uint16_t length, uint8_t sequence, uint8_t* data, IPAddress remoteIP);
  148. void (*artSyncCallback)(IPAddress remoteIP);
  149. };
  150. #endif