Skip to content

Commit

Permalink
License in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
natcl committed Oct 4, 2014
1 parent 1134713 commit d72ac99
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/ArtnetNeoPixel/ArtnetNeoPixel.ino
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
This example will receive multiple universes via Artnet and control a strip of ws2811 leds via
Adafruit's NeoPixel library: https://github.com/adafruit/Adafruit_NeoPixel
This example may be copied under the terms of the MIT license, see the LICENSE file for details
*/

#include <Artnet.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
Expand Down
7 changes: 7 additions & 0 deletions examples/ArtnetNeoPixelSD/ArtnetNeoPixelSD.ino
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
Same as ArtnetNeoPixel.ino but with controls to record and playback sequences from an SD card.
To record, send 255 to the first channel of universe 14. To stop, send 0 and to playback send 127.
The limit of leds seems to be around 450 to get 44 fps. The playback routine is not optimzed yet.
This example may be copied under the terms of the MIT license, see the LICENSE file for details
*/

#include <Artnet.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
Expand Down
6 changes: 6 additions & 0 deletions examples/ArtnetOctoWS2811/ArtnetOctoWS2811.ino
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
This example will receive multiple universes via Artnet and control a strip of ws2811 leds via
Paul Stoffregen's excellent OctoWS2811 library: https://www.pjrc.com/teensy/td_libs_OctoWS2811.html
This example may be copied under the terms of the MIT license, see the LICENSE file for details
*/

#include <Artnet.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
Expand Down
6 changes: 6 additions & 0 deletions examples/ArtnetReceive/ArtnetReceive.ino
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
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 <Artnet.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
Expand Down
5 changes: 5 additions & 0 deletions examples/ArtnetReceiveCallback/ArtnetReceiveCallback.ino
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
This is similar to ArtnetReceive but uses a callback to read the data.
This example may be copied under the terms of the MIT license, see the LICENSE file for details
*/

#include <Artnet.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
Expand Down

0 comments on commit d72ac99

Please sign in to comment.