From 01d229823ea425799a3cd183ccbdbac50164ef47 Mon Sep 17 00:00:00 2001 From: Debenben <35615783+Debenben@users.noreply.github.com> Date: Tue, 29 Dec 2020 16:31:45 +0100 Subject: [PATCH] fix issue #118 (partially) fix wrong constant, should be 0x82 like in previous version. --- src/hubs/lpf2hub.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hubs/lpf2hub.ts b/src/hubs/lpf2hub.ts index ac1f4a6..743d1ec 100644 --- a/src/hubs/lpf2hub.ts +++ b/src/hubs/lpf2hub.ts @@ -159,7 +159,7 @@ export class LPF2Hub extends BaseHub { this._parseSensorMessage(message); break; } - case Consts.MessageType.HUB_ACTIONS: { + case Consts.MessageType.PORT_OUTPUT_COMMAND_FEEDBACK: { this._parsePortAction(message); break; }