From 6f0fe482e05472a19354476da6f29f2785d8585b Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Sat, 8 Feb 2025 16:08:33 -0500 Subject: [PATCH] Update fc_block_decode.py try .0 --- groundstation/fc_block_decode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/groundstation/fc_block_decode.py b/groundstation/fc_block_decode.py index 542c64c2..c72a9339 100644 --- a/groundstation/fc_block_decode.py +++ b/groundstation/fc_block_decode.py @@ -25,7 +25,7 @@ Vz = 0 head_string = '\n\nFunCube CubeSatSim Telemetry\n

\n

' foot_string = "

\n" -telem_string = f"\nSequence number: {sequence:5.d} Image ID: {image_id:3.d} count: {image_count:2.d}

Vx: {Vx:5.d} mV Vy: {Vy:5.d} mV Vz: {Vz:5.d} mV" +telem_string = f"\nSequence number: {sequence:5.0d} Image ID: {image_id:3.0d} count: {image_count:2.0d}

Vx: {Vx:5.0d} mV Vy: {Vy:5.0d} mV Vz: {Vz:5.0d} mV" with open("/home/pi/CubeSatSim/groundstation/public_html/index.html", "w") as html_file: html_file.write(head_string) html_file.write(telem_string)