Fixes for string splitting

This commit is contained in:
Tristan McGinnis
2025-05-03 17:52:49 -05:00
committed by David
parent 0ea4c73876
commit 9d13d487cb

View File

@@ -162,7 +162,7 @@ class SerialRelay(Node):
def recordAngleFeedback(self, msg):
# Angle feedbacks
parts = msg.split(",")
parts = msg.data.split(",")
if len(parts) >= 7:
# Extract the angles from the string
angles_in = parts[3:7]
@@ -195,7 +195,7 @@ class SerialRelay(Node):
def recordBusVoltage(self, msg):
# Bus Voltage feedbacks
parts = msg.split(",")
parts = msg.data.split(",")
if len(parts) >= 7:
# Extract the voltage from the string
voltages_in = parts[3:7]
@@ -209,7 +209,7 @@ class SerialRelay(Node):
def recordMotorFeedback(self, msg):
# Motor voltage/current/temperature feedback
parts = msg.split(",")
parts = msg.data.split(",")
if len(parts) >= 7:
# Extract the voltage/current/temperature from the string
values_in = parts[3:7]