From 4666a187857b7fed3363dff78fdd99dd52540193 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 10 Jul 2024 19:45:41 -0700 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh_bot.py b/mesh_bot.py index 5072ff5..9e17bc8 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -49,7 +49,7 @@ hostname = config['interface'].get('hostname', '') mac = config['interface'].get('mac', '') if interface_type == 'serial': - interface = meshtastic.serial_interface.SerialInterface() + interface = meshtastic.serial_interface.SerialInterface(port) elif interface_type == 'tcp': interface = meshtastic.tcp_interface.TCPInterface(hostname) elif interface_type == 'ble':