Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DaAwesomeP committed Nov 28, 2017
1 parent e7edf39 commit 26c437e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=DMXUSB
version=0.0.2
version=0.0.3
author=DaAwesomeP
maintainer=DaAwesomeP
sentence=DMXUSB emulates an ENTTEC-compatible DMXKing USB to DMX serial device with one or two universes
Expand Down
2 changes: 1 addition & 1 deletion src/DMXUSB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void DMXUSB::listen() {
_serial->write(0x03); // label 3
_serial->write(len & 0xff); // data length LSB: 4
_serial->write((len + 1) >> 8); // data length MSB: 0
_serial->write((byte)0x01); // firmware version LSB: 1 (v0.0.2)
_serial->write((byte)0x02); // firmware version LSB: 2 (v0.0.3)
_serial->write((byte)0x00); // firmware version MSB: 0
_serial->write(0x09); // DMX output break time in 10.67 microsecond units: 9 (TODO: CALCUALTE WITH BAUDRATE)
_serial->write(0x01); // DMX output Mark After Break time in 10.67 microsecond units: 1 (TODO: CALCUALTE WITH BAUDRATE)
Expand Down

0 comments on commit 26c437e

Please sign in to comment.