Kleiner Fehler korrigiert. Funktioniert nun in beide Richtungen.
This commit is contained in:
parent
cfde48c2b3
commit
5b6443fd9c
|
@ -29,7 +29,8 @@ bool switchHandler(const HomieRange& range, const String& value) {
|
||||||
// Nur solange wir noch Platz für Inputbytes haben... :)
|
// Nur solange wir noch Platz für Inputbytes haben... :)
|
||||||
if (localByte <= 3) {
|
if (localByte <= 3) {
|
||||||
nextspace = value.indexOf(' ', lastspace);
|
nextspace = value.indexOf(' ', lastspace);
|
||||||
commandbytes[localByte] = (value.substring(lastspace,nextspace-1)).toInt(); // TEST for sanity
|
commandbytes[localByte] = (value.substring(lastspace,nextspace)).toInt();
|
||||||
|
lastspace = nextspace+1;
|
||||||
localByte++;
|
localByte++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue