Last change
on this file since 48 was
48,
checked in by sc, 12 years ago
|
client:
- Switched to JSON from Pickle for message encodings
- Fixed but with command line client not respecting custom server host/port settings
configuration.ini:
- thinkgear server settings added
configuration.py
- thinkgear server settings added
server:
- Switched to JSON from Pickle for message encodings
client_thinkgear:
|
File size:
1.1 KB
|
Rev | Line | |
---|
[45] | 1 | #####################################################################
|
---|
| 2 | # Puzzlebox Brainstorms Configuration
|
---|
| 3 | #####################################################################
|
---|
| 4 |
|
---|
| 5 | BLUETOOTH_DEVICE = 'COM1'
|
---|
| 6 |
|
---|
| 7 | #DISCRETE_CONTROL_COMMANDS = True
|
---|
| 8 |
|
---|
| 9 | #####################################################################
|
---|
| 10 | # Network addresses
|
---|
| 11 | #####################################################################
|
---|
| 12 |
|
---|
| 13 | SERVER_INTERFACE = '' # listen on all of server's network interfaces
|
---|
| 14 | #SERVER_HOST = '172.16.1.1'
|
---|
| 15 | SERVER_HOST = '127.0.0.1' # localhost
|
---|
| 16 | SERVER_PORT = 8194
|
---|
| 17 |
|
---|
[48] | 18 | THINKGEAR_SERVER_HOST = '127.0.0.1'
|
---|
| 19 | THINKGEAR_SERVER_PORT = 13854
|
---|
[45] | 20 |
|
---|
[48] | 21 |
|
---|
[45] | 22 | #####################################################################
|
---|
| 23 | # LEGO Mindstorms NXT robot configuration
|
---|
| 24 | #####################################################################
|
---|
| 25 |
|
---|
| 26 | MOTORS_MOUNTED_BACKWARDS = True
|
---|
| 27 | MOTOR_PORT_RIGHT = 'a'
|
---|
| 28 | MOTOR_PORT_LEFT = 'b'
|
---|
| 29 |
|
---|
| 30 |
|
---|
| 31 | #####################################################################
|
---|
| 32 | # Logging
|
---|
| 33 | #####################################################################
|
---|
| 34 |
|
---|
| 35 | #LOGFILE_DIR = '/var/log/puzzlebox'
|
---|
| 36 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.