mirror of
https://github.com/undera/pylgbst.git
synced 2020-11-18 19:37:26 -08:00
* Cosmetics * Harmonograph demo * Cleanup * Original * Original * Cosmetics * Original file * Fixes * cosmetics * separate classes * Cosmetics * Cosmetics * fix tests * Remove plotter tests * Add bluegiga * Rename it * Progress * Fix tests * Cosmetics * Found a way for pygatt! * Playing with gatt * Fix hung subscribe * rename class * add test * skeleton for autodetect * safer order * Fix tests * Fix test * Add dbus install * another try * 2 * 3 * 34 * 6 * 7 * Isolate some tests * 8 * back to roots * Try more * 9 * Help * rep * site-packs * Fix? * Py3 come on * dbus * busss * dev null! * Fix test * Cleanup * Fix tests * Fix after review * add package * FIx package paths * Cosmetics * Update * More doc
18 lines
334 B
Python
18 lines
334 B
Python
import sys
|
|
|
|
from . import *
|
|
|
|
robot = Vernie()
|
|
|
|
robot.say("commands from file")
|
|
|
|
|
|
def confirmation(command):
|
|
robot.say(command[0])
|
|
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), "vernie.commands")) as fhd:
|
|
for cmd in fhd.readlines():
|
|
sys.stdout.write("%s" % cmd)
|
|
robot.interpret_command(cmd, confirmation)
|