blob: a8141cb5ac57aa44c99d0bbab8f9a95b78002e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/usr/bin/env python
import os
import urllib2
import sys
import vocabcompiler
import traceback
lib_path = os.path.abspath('../client')
sys.path.append(lib_path)
import speaker as speak
speaker = speak.newSpeaker()
def configure():
try:
urllib2.urlopen("http://www.google.com").getcode()
print "CONNECTED TO INTERNET"
print "COMPILING DICTIONARY"
vocabcompiler.compile("../client/sentences.txt", "../client/dictionary.dic", "../client/languagemodel.lm")
print "STARTING CLIENT PROGRAM"
os.system("$JASPER_HOME/jasper/client/start.sh &")
except:
print "COULD NOT CONNECT TO NETWORK"
traceback.print_exc()
speaker.say("Hello, I could not connect to a network. Please read the documentation to configure your Raspberry Pi.")
if __name__ == "__main__":
print "==========STARTING JASPER CLIENT=========="
print "=========================================="
print "COPYRIGHT 2013 SHUBHRO SAHA, CHARLIE MARSH"
print "=========================================="
speaker.say("Hello.... I am Jasper... Please wait one moment.")
configure()
|