ArtnetReceiveESP.ino 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. This is a basic example that will print out the header and the content of an ArtDmx packet.
  3. This example uses the read() function and the different getter functions to read the data.
  4. This example may be copied under the terms of the MIT license, see the LICENSE file for details
  5. This works with ESP8266 and ESP32 based boards
  6. */
  7. #include <Artnet.h>
  8. const char* ssid = "yourssid";
  9. const char* password = "yourpassword";
  10. Artnet artnet;
  11. void setup()
  12. {
  13. Serial.begin(115200);
  14. WiFi.begin(ssid, password);
  15. while (WiFi.status() != WL_CONNECTED) {
  16. delay(250);
  17. Serial.print(".");
  18. }
  19. Serial.println("");
  20. Serial.print("Connected to ");
  21. Serial.println(ssid);
  22. Serial.print("IP address: ");
  23. Serial.println(WiFi.localIP());
  24. artnet.begin();
  25. }
  26. void loop()
  27. {
  28. if (artnet.read() == ART_DMX)
  29. {
  30. // print out our data
  31. Serial.print("universe number = ");
  32. Serial.print(artnet.getUniverse());
  33. Serial.print("\tdata length = ");
  34. Serial.print(artnet.getLength());
  35. Serial.print("\tsequence n0. = ");
  36. Serial.println(artnet.getSequence());
  37. Serial.print("DMX data: ");
  38. for (int i = 0 ; i < artnet.getLength() ; i++)
  39. {
  40. Serial.print(artnet.getDmxFrame()[i]);
  41. Serial.print(" ");
  42. }
  43. Serial.println();
  44. Serial.println();
  45. }
  46. }