Files
python/tests/hello_world.py
2023-03-31 20:09:59 +02:00

10 lines
234 B
Python

import time
import meshtastic
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()