diff server/ts.py @ 388:b33045e7e08e

move server config into config.py
author Matt Johnston <matt@ucc.asn.au>
date Wed, 11 Jul 2012 22:50:23 +0800
parents dae8eb26eaa3
children 51d889ad39a3
line wrap: on
line diff
--- a/server/ts.py	Wed Jul 11 00:22:31 2012 +0800
+++ b/server/ts.py	Wed Jul 11 22:50:23 2012 +0800
@@ -1,7 +1,5 @@
 #!/usr/bin/env python2.7
 
-BTADDR = "00:12:03:27:70:88"
-SLEEP_TIME = 5
 # time that the bluetooth takes to get going?
 EXTRA_WAKEUP = 0
 
@@ -179,11 +177,11 @@
     while True:
         sock = None
         try:
-            sock = get_socket(BTADDR)
+            sock = get_socket(config.BTADDR)
         except Exception, e:
             print>>sys.stderr, "Error connecting:"
             traceback.print_exc(file=sys.stderr)
-        sleep_time = SLEEP_TIME
+        sleep_time = config.SLEEP_TIME
         if sock:
             next_wake = None
             try: