add sanity prerelease tests

This commit is contained in:
Kevin Hester
2020-12-09 09:21:41 +08:00
parent 0662c2b2ac
commit 1f91f541ef
6 changed files with 21 additions and 2 deletions

6
tests/hello_world.py Normal file
View File

@@ -0,0 +1,6 @@
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()