Change doc mentions of StreamInterface into SerialInterface

This commit is contained in:
geeksville
2020-09-27 20:02:26 -07:00
parent 25eea6c5b9
commit c258d9f4f4
3 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,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 = meshtastic.SerialInterface() # By default will try to find a meshtastic device, otherwise provide a device path like /dev/ttyUSB0
interface.sendText("hello mesh") # or sendData to send binary data, see documentations for other options.
```