From 8e15949be7d7b0880fc19634ee5518a48afe2bbb Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 25 Nov 2023 12:08:57 -0600 Subject: [PATCH] cleanup constants --- packages/lib/index.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/lib/index.js b/packages/lib/index.js index cf931e8..40e8f54 100644 --- a/packages/lib/index.js +++ b/packages/lib/index.js @@ -467,11 +467,7 @@ class Console { module.exports = { Console, Packets: { - START_LIVE: Buffer.from([ - ...[0xfb, 0xb1, 0, 0, 0, 0, 0x54], - ...[0xfb, 0xc1, 0, 0, 0, 0, 0x44], - ...[0xfb, 0xb1, 0, 0, 0, 0, 0x54], - ]), - STOP_LIVE: Buffer.from([...[0xfb, 0xc0, 0, 0, 0, 0, 0x45], ...[0xfb, 0xb0, 0, 0, 0, 0, 0x55]]), + START_LIVE: Buffer.from([...[0xfb, 0xb1, 0, 0, 0, 0, 0x54], ...[0xfb, 0xc1, 0, 0, 0, 0, 0x44]]), + STOP_LIVE: Buffer.from([...[0xfb, 0xb0, 0, 0, 0, 0, 0x55], ...[0xfb, 0xc0, 0, 0, 0, 0, 0x45]]), }, };