fenrir/play zone/writeBrl.py

18 lines
267 B
Python
Raw Normal View History

2016-10-07 20:08:01 -04:00
#!/bin/python
import brlapi
import time
2016-10-07 20:08:01 -04:00
2016-10-07 20:14:10 -04:00
brl = brlapi.Connection()
2016-10-07 20:08:01 -04:00
print(brl.displaySize)
print(brl.driverName)
t = time.time()
while(time.time() - t <= 5):
try:
brl.writeText('this is a 5 second test')
except Exception as e:
print(e)
2016-10-07 20:08:01 -04:00