Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion adafruit_rockblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def satellite_transfer(self, location=None):
if resp[-1].strip().decode() == "OK":
status = resp[-3].strip().decode().split(":")[1]
status = [int(s) for s in status.split(",")]
if status[0] <= 8:
if status[0] <= 5:
# outgoing message sent successfully
self.data_out = None
return tuple(status)
Expand Down