Changeset 5 for rc/puzzlebox_brainstorms_rc.py
- Timestamp:
- 01/28/10 15:18:54 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rc/puzzlebox_brainstorms_rc.py
r3 r5 2 2 # -*- coding: utf-8 -*- 3 3 # 4 # Puzzlebox - Brainstorms - R C5 # 6 # Copyright Steven M. Castellotti(2010)4 # Puzzlebox - Brainstorms - Remote Control 5 # 6 # Copyright Puzzlebox Productions, LLC (2010) 7 7 # 8 8 # Portions of this code have been previously … … 11 11 # For more information please refer to http://www.gnu.org/copyleft/gpl.html 12 12 # 13 # Last Update: 2010.01.2 713 # Last Update: 2010.01.28 14 14 # 15 15 ##################################################################### … … 19 19 import jaraco.nxt 20 20 import jaraco.nxt.messages 21 import puzzlebox_brainstorms_configuration as configuration 21 22 22 23 ##################################################################### … … 26 27 DEBUG = 2 27 28 28 BLUETOOTH_DEVICE ='/dev/rfcomm0'29 MOTORS_MOUNTED_BACKWARDS = True30 MOTOR_PORT_RIGHT = 'a'31 MOTOR_PORT_LEFT = 'b'29 BLUETOOTH_DEVICE = configuration.BLUETOOTH_DEVICE 30 MOTORS_MOUNTED_BACKWARDS = configuration.MOTORS_MOUNTED_BACKWARDS 31 MOTOR_PORT_RIGHT = configuration.MOTOR_PORT_RIGHT 32 MOTOR_PORT_LEFT = configuration.MOTOR_PORT_LEFT 32 33 33 34 #####################################################################
Note: See TracChangeset
for help on using the changeset viewer.