diff --git a/groundstation/fc_block_decode.py b/groundstation/fc_block_decode.py index 470d2009..681ea5d0 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: >5d} Image ID: {image_id: >3d} count: {image_count: >2d}
Vx: {Vx: >5d} mV Vy: {Vy: >5d} mV Vz: {Vz: >5d} mV" +telem_string = f"\nSequence number: {sequence:5d} Image ID: {image_id:3d} count: {image_count:2d}
Vx: {Vx:5d} mV Vy: {Vy:5d} mV Vz: {Vz:5d} 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)