Skip to content

Commit a3c65d5

Browse files
authored
Merge pull request #3 from FatBeard/master
Fixed pump speed and error mask
2 parents ce77189 + 54c42a2 commit a3c65d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ArduinoVBusDecoder.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -731,10 +731,10 @@ char sync1 = 0xAA;
731731
Septet = Buffer[F + FSeptet];
732732
InjectSeptet(Buffer, F, 4);
733733

734-
PumpSpeed1 = (Buffer[F] );
735-
PumpSpeed2 = (Buffer[F + 1]);
736-
//ErrorMask = Buffer[F + 2]; This is the notification
737-
Scheme = Buffer[F + 3];
734+
Relay1 = (Buffer[F] );
735+
Relay2 = (Buffer[F + 1]);
736+
ErrorMask = Buffer[F + 2]; //This is the notification
737+
Scheme = Buffer[F + 3];
738738

739739
//******************* Frame 4 *******************
740740
F = FOffset + FLength * 3;

0 commit comments

Comments
 (0)