/* This is a basic example that will print out the header and the content of an ArtDmx packet. This example uses the read() function and the different getter functions to read the data. This example may be copied under the terms of the MIT license, see the LICENSE file for details */ #include #include #include #include Artnet artnet; // Change ip and mac address for your setup byte ip[] = {192, 168, 2, 2}; byte mac[] = {0x04, 0xE9, 0xE5, 0x00, 0x69, 0xEC}; void setup() { Serial.begin(115200); artnet.begin(mac, ip); } void loop() { if (artnet.read() == ART_DMX) { // print out our data Serial.print("universe number = "); Serial.print(artnet.getUniverse()); Serial.print("\tdata length = "); Serial.print(artnet.getLength()); Serial.print("\tsequence n0. = "); Serial.println(artnet.getSequence()); Serial.print("DMX data: "); for (int i = 0 ; i < artnet.getLength() ; i++) { Serial.print(artnet.getDmxFrame()[i]); Serial.print(" "); } Serial.println(); Serial.println(); } }