1 | #####################################################################
|
---|
2 | # Puzzlebox ThinkGear Emulator Configuration
|
---|
3 | #####################################################################
|
---|
4 |
|
---|
5 | #####################################################################
|
---|
6 | # Network addresses
|
---|
7 | #####################################################################
|
---|
8 |
|
---|
9 | THINKGEAR_SERVER_INTERFACE = '' # listen on all of server's network interfaces
|
---|
10 | THINKGEAR_SERVER_HOST = '127.0.0.1'
|
---|
11 | THINKGEAR_SERVER_PORT = 13854
|
---|
12 |
|
---|
13 |
|
---|
14 | #####################################################################
|
---|
15 | # ThinkGear Connect configuration
|
---|
16 | #####################################################################
|
---|
17 |
|
---|
18 | ENABLE_THINKGEAR_AUTHORIZATION = False
|
---|
19 |
|
---|
20 | THINKGEAR_AUTHORIZATION_REQUEST = { "appName": "Puzzlebox Brainstorms", "appKey": "2e285d7bd5565c0ea73e7e265c73f0691d932408" }
|
---|
21 |
|
---|
22 |
|
---|
23 | #####################################################################
|
---|
24 | # ThinkGear Connect Server Emulator configuration
|
---|
25 | #####################################################################
|
---|
26 |
|
---|
27 | THINKGEAR_ENABLE_SIMULATE_HEADSET_DATA = True
|
---|
28 |
|
---|
29 | THINKGEAR_BLINK_FREQUENCY_TIMER = 6 # blink every 6 seconds
|
---|
30 | # (6 seconds is listed by Wikipedia
|
---|
31 | # as being the average number of times
|
---|
32 | # an adult blinks in a laboratory setting)
|
---|
33 |
|
---|
34 | THINKGEAR_DEFAULT_SAMPLE_WAVELENGTH = 30 # number of seconds from 0 to max
|
---|
35 | # and back to 0 for any given
|
---|
36 | # detection value below
|
---|