From 1ee36692d370ce4594393620a8640f55547ea7af Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 3 Feb 2025 08:44:45 -0500 Subject: [PATCH] Update transmit.py add str() to print --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 78fbfc6d..4c01e21f 100644 --- a/transmit.py +++ b/transmit.py @@ -787,7 +787,7 @@ if __name__ == "__main__": system("raspistill -o /home/pi/CubeSatSim/camera_out.jpg -w 320 -h 256") # > /dev/null 2>&1") print("Photo taken") system("/home/pi/ssdv/ssdv -e -c CALLSIGN -i " + str(image_index) + " -q 3 -J camera_out.jpg /home/pi/CubeSatSim/image_file.bin") - print("image_index " + image_index + "\n") + print("image_index " + str(image_index) + "\n") image_index = ( index_image + 1 ) % 256 sleep(2) else: