Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
FoamyGuy committed Dec 23, 2024
1 parent ce3670f commit 4c95b1b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions adafruit_wiz.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,7 @@ def scan(radio=None, timeout=3):
data = json.dumps({"method": "getPilot", "params": {}})
udp_message = bytes(data, "utf-8")

scan_socket.sendto(
udp_message, ("255.255.255.255", 38899)
) # send UDP packet to udp_host:port
scan_socket.sendto(udp_message, ("255.255.255.255", 38899))
scan_complete = False
results = []
while not scan_complete:
Expand Down

0 comments on commit 4c95b1b

Please sign in to comment.