- Timestamp:
- 01/04/11 04:58:05 (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/brainstorms/Puzzlebox/Brainstorms/Interface.py
r258 r259 10 10 11 11 __changelog__ = """\ 12 Last Update: 2010.12. 0412 Last Update: 2010.12.12 13 13 14 14 """ … … 16 16 __todo__ = """ 17 17 - ERROR: could not open port /dev/ttyUSB0: [Errno 13] Permission denied: '/dev/ttyUSB0' /dev/ttyUSB0 18 - ERROR: Could not configure port: (5, 'Input/output error') /dev/ttyS0 18 19 - server may not correctly handle multiple clients connected 19 20 to an embedded Brainstorms server 21 - add setting to configuration.ini for which helicopter command gets 22 called when speed reaches threshold 20 23 - disable autorepeating on shortcut keys 21 24 - update configuration.ini file with settings entered into interface -
trunk/synapse/Puzzlebox/Synapse/Configuration.py
r174 r259 39 39 'highGamma': 'k-', \ 40 40 } 41 42 INTERFACE_TAB_POSITION = 'North' 41 43 42 44 #The following color abbreviations are supported: -
trunk/synapse/Puzzlebox/Synapse/Interface.py
r223 r259 145 145 if os.path.exists(image_path): 146 146 self.labelPuzzleboxIcon.setPixmap(QtGui.QPixmap(image_path)) 147 148 149 if configuration.INTERFACE_TAB_POSITION == 'South': 150 self.tabWidget.setTabPosition(QtGui.QTabWidget.South) 151 else: 152 self.tabWidget.setTabPosition(QtGui.QTabWidget.North) 147 153 148 154 -
trunk/synapse/puzzlebox_synapse_configuration.ini
r164 r259 2 2 # Puzzlebox Synapse Configuration 3 3 ##################################################################### 4 5 INTERFACE_TAB_POSITION = 'North' # Set to South for Nokia n900 4 6 5 7 #####################################################################
Note: See TracChangeset
for help on using the changeset viewer.