Kleiner Fehler korrigiert. Funktioniert nun in beide Richtungen.

This commit is contained in:
starcalc 2017-11-28 19:38:40 +01:00
parent cfde48c2b3
commit 5b6443fd9c
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ bool switchHandler(const HomieRange& range, const String& value) {
// Nur solange wir noch Platz für Inputbytes haben... :)
if (localByte <= 3) {
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++;
}
}