Skip to content

Commit

Permalink
v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DaAwesomeP committed Jun 19, 2019
1 parent f782e41 commit 8d298bb
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.3
version=0.0.4
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 @@ -155,7 +155,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)0x02); // firmware version LSB: 2 (v0.0.3)
_serial->write((byte)0x03); // firmware version LSB: 3 (v0.0.4)
_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 8d298bb

Please sign in to comment.