Skip to content

Commit

Permalink
Update Field.py
Browse files Browse the repository at this point in the history
Changed send_with_ack() to send()
  • Loading branch information
Mikefly123 committed Nov 19, 2024
1 parent f7c786c commit 578c42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FC_Board/lib/Field.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def Beacon(self, msg):
self.debug_print("I am beaconing: " + str(msg))
print(
"Message Success: "
+ str(self.cubesat.radio1.send_with_ack(bytes(msg, "UTF-8")))
+ str(self.cubesat.radio1.send(bytes(msg, "UTF-8")))
)
else:
self.debug_print(
Expand Down

0 comments on commit 578c42c

Please sign in to comment.