From 8fc180ba158437d7d35449185636405d4b809d9a Mon Sep 17 00:00:00 2001 From: geeksville Date: Wed, 20 May 2020 17:09:32 -0700 Subject: [PATCH] fix example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f195f6f..e80506d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ then run the following python3 code: ``` import meshtastic interface = meshtastic.StreamInterface() # By default will try to find a meshtastic device, otherwise provide a device path like /dev/ttyUSB0 -interface.sendData("hello mesh") +interface.sendText("hello mesh") # or sendData to send binary data, see documentations for other options. ``` For the rough notes/implementation plan see [TODO](https://github.com/meshtastic/Meshtastic-python/blob/master/TODO.md).