Skip to content

Commit 58ff5ed

Browse files
committed
minor
1 parent b213be6 commit 58ff5ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/40-fm-tuner-rda5807/serial_example.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
print("Pi Pico RDA5807 FM Radio Example")
4141
print("press ? for help")
4242
while(1):
43-
# command = sys.stdin.read(1)
44-
command = "?"
43+
command = sys.stdin.read(1)
44+
# ?command = "?"
4545
if command == "?":
4646
print("Commands")
4747
print("========")
@@ -62,7 +62,7 @@
6262
radio.update_rds()
6363
time.sleep_ms(100)
6464
print(radio.station_name)
65-
print(radio.radio_text)
65+
# print(radio.radio_text)
6666

6767
if command == ".":
6868
print("seeking...")
@@ -89,4 +89,4 @@
8989
mute = True
9090
radio.mute(mute)
9191

92-
time.sleep_ms(5000)
92+
# time.sleep_ms(5000)

0 commit comments

Comments
 (0)