We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd9b3ba commit 1411476Copy full SHA for 1411476
library.properties
@@ -1,5 +1,5 @@
1
name=MicroOsc
2
-version=0.1.5
+version=0.1.6
3
author=Thomas O Fredericks
4
maintainer=Thomas O Fredericks
5
sentence=Simple and lightweight Open Sound Control (OSC) library
src/MicroOscSlip.h
@@ -62,7 +62,7 @@ class MicroSlip : public Print {
62
if ( escaping ) {
63
if ( streamByte == SLIP_ESC_END ) {
64
buffer[parseIndex++]=SLIP_END;
65
- } else if ( streamByte == SLIP_ESC_END ) {
+ } else if ( streamByte == SLIP_ESC_ESC ) {
66
buffer[parseIndex++]=SLIP_ESC;
67
}
68
/*
0 commit comments