upload stuff

This commit is contained in:
chrys 2016-08-15 01:41:47 +02:00
parent 821a46697e
commit 3d5d048a4b
3 changed files with 54 additions and 2 deletions

View File

@ -0,0 +1,39 @@
[sound]
enabled=True
driver=sox
theme=default
volume=1.0
[speech]
enabled=True
driver=speechd
rate=0.75
pitch=0.5
module=espeak
voice=de
language=de
volume=1.0
autoReadIncomming=True
[braille]
enabled=False
layout=en
[screen]
driver=linux
screenUpdateDelay=0.4
[keyboard]
device=all
grabDevices=True
ignoreShortcuts=False
keyboardLayout=test
charEcho=True
charDeleteEcho=True
wordEcho=True
interruptOnKeyPress=False
[general]
debugLevel=0
punctuationLevel=1
fenrirKeys=KEY_KP0

View File

@ -10,8 +10,8 @@ driver=speechd
rate=0.75 rate=0.75
pitch=0.5 pitch=0.5
module=espeak module=espeak
voice=en-us voice=us
language=en-us language=en
volume=1.0 volume=1.0
autoReadIncomming=True autoReadIncomming=True

View File

@ -0,0 +1,13 @@
#!/bin/python
class command():
def __init__(self):
pass
def run(self, environment):
environment['input']['keyForeward'] = True
environment['runtime']['outputManager'].presentText(environment, 'Foreward next keypress', interrupt=True)
return environment
def setCallback(self, callback):
pass
def shutdown(self):
pass