We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a38a113 + a74292a commit cdcc498Copy full SHA for cdcc498
examples/rfm69_simpletest.py
@@ -41,7 +41,7 @@
41
# This is a limitation of the radio packet size, so if you need to send larger
42
# amounts of data you will need to break it into smaller send calls. Each send
43
# call will wait for the previous one to finish before continuing.
44
-rfm69.send('Hello world!\r\n')
+rfm69.send(bytes('Hello world!\r\n',"utf-8"))
45
print('Sent hello world message!')
46
47
# Wait to receive packets. Note that this library can't receive data at a fast
0 commit comments