Nxt-python-hints
Revision as of 08:16, 27 April 2010 by Amweeden06 (talk | contribs)
Back to Robotics Main Page
Python Programming Hints
- Wrap your code in a try/finally block so that you can stop the motors on control-c.
try: [your code here] finally: [stop all your motors]