mirror of
https://github.com/meshtastic/python.git
synced 2025-12-24 16:37:51 -05:00
7 lines
224 B
Python
7 lines
224 B
Python
import meshtastic
|
|
import time
|
|
|
|
interface = meshtastic.SerialInterface() # By default will try to find a meshtastic device, otherwise provide a device path like /dev/ttyUSB0
|
|
interface.sendText("hello mesh")
|
|
interface.close()
|