1 | #####################################################################
|
---|
2 | # Puzzlebox Synapse Configuration
|
---|
3 | #####################################################################
|
---|
4 |
|
---|
5 | INTERFACE_TAB_POSITION = 'North' # Set to South for Nokia n900
|
---|
6 |
|
---|
7 | #####################################################################
|
---|
8 | # ThinkGear Device configuration
|
---|
9 | #####################################################################
|
---|
10 |
|
---|
11 | # Use COM port for Windows
|
---|
12 | THINKGEAR_DEVICE_SERIAL_PORT = ''
|
---|
13 | # THINKGEAR_DEVICE_SERIAL_PORT = 'COM2' # Windows example setting
|
---|
14 |
|
---|
15 | # Use Bluetooth MAC address for Linux
|
---|
16 | THINKGEAR_DEVICE_BLUETOOTH_ADDRESS = ''
|
---|
17 | # THINKGEAR_DEVICE_BLUETOOTH_ADDRESS = '00:13:EF:xx:xx:xx' # Linux example
|
---|
18 |
|
---|
19 |
|
---|
20 | #####################################################################
|
---|
21 | # Network addresses
|
---|
22 | #####################################################################
|
---|
23 |
|
---|
24 | THINKGEAR_SERVER_INTERFACE = '' # listen on all of server's network interfaces
|
---|
25 | THINKGEAR_SERVER_HOST = '*'
|
---|
26 | THINKGEAR_SERVER_PORT = 13854
|
---|
27 |
|
---|
28 |
|
---|
29 | #####################################################################
|
---|
30 | # ThinkGear Connect configuration
|
---|
31 | #####################################################################
|
---|
32 |
|
---|
33 | ENABLE_THINKGEAR_AUTHORIZATION = False
|
---|
34 |
|
---|
35 | THINKGEAR_AUTHORIZATION_REQUEST = { "appName": "Puzzlebox Brainstorms", "appKey": "2e285d7bd5565c0ea73e7e265c73f0691d932408" }
|
---|
36 |
|
---|
37 |
|
---|
38 | #####################################################################
|
---|
39 | # ThinkGear Connect Server configuration
|
---|
40 | #####################################################################
|
---|
41 |
|
---|
42 | THINKGEAR_ENABLE_SIMULATE_HEADSET_DATA = False
|
---|
43 |
|
---|
44 | THINKGEAR_BLINK_FREQUENCY_TIMER = 6 # blink every 6 seconds
|
---|
45 | # (6 seconds is listed by Wikipedia
|
---|
46 | # as being the average number of times
|
---|
47 | # an adult blinks in a laboratory setting)
|
---|
48 |
|
---|
49 | THINKGEAR_DEFAULT_SAMPLE_WAVELENGTH = 30 # number of seconds from 0 to max
|
---|
50 | # and back to 0 for any given
|
---|
51 | # detection value below
|
---|
52 |
|
---|
53 | THINKGEAR_ATTENTION_MULTIPLIER = 1.0 # Multipliers allow fine tuning emulation
|
---|
54 | THINKGEAR_MEDITATION_MULTIPLIER = 0.75
|
---|
55 |
|
---|
56 | THINKGEAR_EEG_POWER_MULTIPLIERS = { 'delta': 0.25, 'theta': 0.4, 'lowAlpha': 0.6, 'highAlpha': 0.8, 'lowBeta': 0.9, 'highBeta': 1.0, 'lowGamma': 0.75, 'highGamma': 0.5 }
|
---|
57 |
|
---|
58 |
|
---|