We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac5c6d commit 6328e2eCopy full SHA for 6328e2e
examples/fona_sms.py
@@ -18,15 +18,15 @@
18
print("Connecting to network...")
19
time.sleep(1)
20
print("Connected to network!")
21
-print("RSSI: %ddB"%fona.rssi)
+print("RSSI: %ddB" % fona.rssi)
22
23
# Text a number
24
if not fona.send_sms(140404, "HELP"):
25
raise RuntimeError("FONA did not successfully send SMS")
26
27
# Ask the FONA how many SMS message it has
28
num_sms = fona.num_sms
29
-print("%d SMS's on SIM Card"%num_sms)
+print("%d SMS's on SIM Card" % num_sms)
30
31
# Read out all the SMS messages on the FONA's SIM
32
for slot in range(1, num_sms):
0 commit comments