14 lines
174 B
Python
Executable File
14 lines
174 B
Python
Executable File
#!/bin/python
|
|
|
|
import brlapi
|
|
|
|
brl = brlapi.Connection()
|
|
print(brl.displaySize)
|
|
print(brl.driverName)
|
|
try:
|
|
brl.writeText('test')
|
|
except Exception as e:
|
|
print(e)
|
|
|
|
|