From d4e44ec9af28104737fb1237d0fa11b3d52739d3 Mon Sep 17 00:00:00 2001 From: templeofshadow Date: Fri, 26 Jun 2026 11:01:57 -0500 Subject: [PATCH] actually convert sensor tables to strings for debug prints --- main.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.lua b/main.lua index 95db9f6..5239681 100644 --- a/main.lua +++ b/main.lua @@ -478,7 +478,7 @@ function PollVelocity() SensorData.Velocity.Raw = VelocityVectors if Config.Debug then - print("DEBUG: PollVelocity fetched sensor data: "..SensorData.Velocity) + print("DEBUG: PollVelocity fetched sensor data: "..tableToString(SensorData.Velocity)) end end @@ -503,7 +503,7 @@ function PollAltitude() SensorData.Altitude.VerticalSpeed = VerticalSpeed if Config.Debug then - print("DEBUG: PollAltitude fetched sensor data: "..SensorData.Altitude) + print("DEBUG: PollAltitude fetched sensor data: "..tableToString(SensorData.Altitude)) end end end @@ -572,7 +572,7 @@ function PollGimbal() SensorData.Gimbal.LinearAcceleration = LinearAcceleration if Config.Debug then - print("DEBUG: PollGimbaal fetched sensor data: "..SensorData.Gimbal) + print("DEBUG: PollGimbaal fetched sensor data: "..tableToString(SensorData.Gimbal)) end end end