From 9841d7de9e143b820eb2b0471ec9b1733c72bd9e Mon Sep 17 00:00:00 2001 From: Ronin <6971304+TheCyberRonin@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:53:51 -0400 Subject: [PATCH] chore: Add comment in example --- example/nodeSerial/example.js | 1 + 1 file changed, 1 insertion(+) diff --git a/example/nodeSerial/example.js b/example/nodeSerial/example.js index 76cced4..ca5a612 100644 --- a/example/nodeSerial/example.js +++ b/example/nodeSerial/example.js @@ -3,6 +3,7 @@ import { SerialPort } from "serialport"; const Connect = async () => { const connection = new NodeSerialConnection(); + // COM4 is the port that works for me, you'll have to get your path from SerialPort.list() await connection.connect({ portPath: "COM4", concurrentLogOutput: false,