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