Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use sendto #34

Merged
merged 1 commit into from
May 15, 2024
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
5 changes: 1 addition & 4 deletions adafruit_ntp.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,8 @@ def datetime(self) -> time.struct_time:
for i in range(1, PACKET_SIZE):
self._packet[i] = 0
with self._pool.socket(self._pool.AF_INET, self._pool.SOCK_DGRAM) as sock:
# Since the ESP32SPI doesn't support sendto, we are using
# connect + send to standardize code
sock.settimeout(self._socket_timeout)
sock.connect(self._socket_address)
sock.send(self._packet)
sock.sendto(self._packet, self._socket_address)
sock.recv_into(self._packet)
# Get the time in the context to minimize the difference between it and receiving
# the packet.
Expand Down
Loading