Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-fryza committed Feb 24, 2025
1 parent b213be6 commit 58ff5ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/40-fm-tuner-rda5807/serial_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
print("Pi Pico RDA5807 FM Radio Example")
print("press ? for help")
while(1):
# command = sys.stdin.read(1)
command = "?"
command = sys.stdin.read(1)
# ?command = "?"
if command == "?":
print("Commands")
print("========")
Expand All @@ -62,7 +62,7 @@
radio.update_rds()
time.sleep_ms(100)
print(radio.station_name)
print(radio.radio_text)
# print(radio.radio_text)

if command == ".":
print("seeking...")
Expand All @@ -89,4 +89,4 @@
mute = True
radio.mute(mute)

time.sleep_ms(5000)
# time.sleep_ms(5000)

0 comments on commit 58ff5ed

Please sign in to comment.