From d6c2745e154846d423445a3632e764df3f271838 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 3 Feb 2025 09:00:49 -0500 Subject: [PATCH] Update transmit.py image_index typo --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 4c01e21f..92ab89e4 100644 --- a/transmit.py +++ b/transmit.py @@ -788,7 +788,7 @@ if __name__ == "__main__": 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 " + str(image_index) + "\n") - image_index = ( index_image + 1 ) % 256 + image_index = ( image_index + 1 ) % 256 sleep(2) else: sleep(4.6)