From c44040c299569169a99628e05c4849a6dae09561 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 20 Apr 2024 01:24:58 -0700 Subject: [PATCH] Update commands.md --- commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.md b/commands.md index 853a687..c118660 100644 --- a/commands.md +++ b/commands.md @@ -10,7 +10,7 @@ Simple example in Python: import serial def send_command(command_id, parameters, with_response=False): - with serial.Serial("COM4", 115200) as s: + with serial.Serial("/dev/ttyACM0", 115200) as s: s.write([0x32, 0xAC, command_id] + parameters) if with_response: