Skip to content

Commit f929524

Browse files
committed
fixing version property
1 parent 85b3bf0 commit f929524

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

examples/DmxSerialSend/DmxSerialSend.ino

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
// - - - - -
22
// DmxSerial - A hardware supported interface to DMX.
3-
// DmxSerialSend.ino: Sample DMX application for sending 3 DMX values:
3+
// DmxSerialSend.ino: Sample DMX application for sending 3 DMX values.
4+
// There colors in the 3 lists (RedList, GreenList and BlueList) are placed into the DMX buffer with a slow fade.
5+
// DMXSerial works in the background and constantly sends the actual values over the DMX interface.
6+
// The actual values are also available on the built in PWM ports:
47
// address 1 (red) -> also available on PWM Port 9
58
// address 2 (green) -> also available on PWM Port 6
69
// address 3 (blue) -> also available on PWM Port 5
710
//
8-
// Copyright (c) 2011 by Matthias Hertel, http://www.mathertel.de
11+
// Copyright (c) 2011-2015 by Matthias Hertel, http://www.mathertel.de
912
// This work is licensed under a BSD style license. See http://www.mathertel.de/License.aspx
1013
//
1114
// Documentation and samples are available at http://www.mathertel.de/Arduino
15+
// The repository is on github : https://github.com/mathertel/DMXSerial
16+
// The repository on github is made available in the Arduino Library Manager.
17+
//
1218
// 25.07.2011 creation of the DmxSerial library.
1319
// 10.09.2011 fully control the serial hardware register
1420
// without using the Arduino Serial (HardwareSerial) class to avoid ISR implementation conflicts.
@@ -75,4 +81,4 @@ void loop() {
7581
} // if
7682

7783
delayMicroseconds(2000); // wait a little bit
78-
} // loop
84+
} // loop

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sentence=Enables DMX communication using the built-in serial port for Arduino bo
66
paragraph=This is a library for implementing DMX controllers and devices.
77
category=Communication
88
url=http://www.mathertel.de/Arduino/DMXSerial.aspx
9-
architectures=*
9+
architectures=avr

0 commit comments

Comments
 (0)