Skip to content

Commit c19d0ec

Browse files
authored
Merge pull request #243 from pycom/peter-pycom-patch-1
2 parents 36548e5 + a336294 commit c19d0ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/firmwareapi/pycom/network/sigfox.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ s.setsockopt(socket.SOL_SIGFOX, socket.SO_RX, True)
240240
s.send(bytes([1, 2, 3]))
241241

242242
# await DOWNLINK message
243-
s.recv(32)
243+
r = s.recv(32)
244+
print(ubinascii.hexlify(r))
244245
```
245246

246247
## Sigfox FSK (Device to Device)

0 commit comments

Comments
 (0)