Skip to main content

LEGO Mindstorms NXT Control Package

Project description

NXT-Python is a package for controlling a LEGO NXT robot using the Python
programming language. It can communicate using either USB or Bluetooth. It is
available under the Gnu GPL license. It is based on NXT_Python, where releases
halted in May 2007.

Requirements:

* Python 2.6 (http://www.python.org)
And at least one comm library:
* Bluetooth communications:
Linux/Windows: PyBluez (http://code.google.com/p/pybluez/)
(package python-bluez in deb-based linuxes)
Mac: LightBlue (http://lightblue.sourceforge.net/)
* USB communications:
PyUSB (http://sourceforge.net/projects/pyusb/)

Installation (if using source package):

* Untar/unzip source package
* In package directory, run "python setup.py install" (as root), or if
under windows, double-click install.bat.
* To use USB on Linux as non-superuser, at a root terminal type:
groupadd lego
usermod -a -G lego [username]
echo 'BUS=="usb", SYSFS{idVendor}=="0694", GROUP="lego", MODE="0660"' \
> /etc/udev/rules.d/70-lego.rules

Getting Started:

Take a look at the examples directory (this is, unfortunately, not included
in the windows installer packages...you will find it in a corresponding source
package or SVN checkout). Feel free to copy that code into your scripts and
don't be afraid to experiment! If you are having trouble with something, you may
find the solution in the docstrings (ex. help('nxt.sensor.Ultrasonic')) or even
in the source code (especially for digital sensors).

Notes/FAQ:
(I have tried to put the most important stuff first, but it would be a good
idea to read the whole section. In any case, read it all the way through
before asking for help. Thanks!)

-=-=-About v2-=-=-
This version is part of the 2.x series of releases. Programs designed for
NXT_Python or for the 1.x series of nxt-python will not work with this version.
If you are trying to get an old program to work, it most likely needs a 1.x
series release, which can be downloaded from the nxt-python downloads page at
googlecode. New projects should use a 2.x series release (hint: this is one!)
due to the new features and API improvements. Converting old projects is
somewhat difficult and not officially supported, though as always you're
welcome to ask for help.
Users who are upgrading from v1.x of nxt-python may notice that there is no
longer a nxt.server module. I removed it due to it being a prime example of
feature creep, the code being of low quality, and the connection protocol very
badly designed. I would recommend that anyone wanting to use a brick over a
network connection design and write their own protocol and code to best fit
their specific application.
-=-=-Problems and Their Solutions-=-=-
For some reason, digital sensor operations have a tendency to throw random
I2C communication errors. I have been unable to find the source of this problem
(it seems to be inside the nxt firmware itself) or a good workaround. If some
python master out there comes up with a fix, I would be very, very happy to get
it. Thanks!
The Synchronized Motor support has not been extensively tested for accuracy.
It seems to mostly work well but the accuracy of the braking function and the
closeness of the two motors to each other have not been assesed.
Support for a number of sensors has not been tested at all, due to lack of
hardware. I have started a project to test this code, but the going is slow
and I have decided to go ahead and release rather than waiting several more
months. If you have a problem with a digital sensor, see the troubleshooting
guide below and don't forget to report your trouble!
NXT-Python has not been tested and may not work with custom nxt firmware
versions (if you don't know what that means, you don't need to worry about it).
However, if the firmware uses the standard USB/BT communications protocol,
everything should more or less work. NXT-Python has been tested with bricks
using firmware version up to 1.29 and is compatible with protocol version 1.124
(used by most if not all of the official firmwares).
-=-=-If you co'd the SVN...-=-=-
The Arduino directory of an svn checkout (not included with release
packages) contains a digital sensor unit test system called nxtduemu. It is
intended for developers and advanced users who are looking to experiment with
sensors and the digital sensor framework and classes. See Arduino/README for
more info and usage instructions.

Specific Stability Status:
nxt.brick, nxt.telegram, nxt.direct, and nxt.system:
Hardly changed since NXT_Python; very, very stable.
USB Communication System (nxt.usbsock)
On Linux: Very stable and extensively tested.
On Windows: Somewhat tested; seems to work pretty well.
On Mac: Should be working, though I have not heard either way.
BlueTooth Communication System (nxt.bluesock, nxt.lightblueglue)
On Linux: Stable; well tested.
On Windows: Stable; working last I checked.
On Mac: Reported working.
nxt.locator:
Stable, well tested.
nxt.motor:
Stable except for Synchronized Motor support, which is experimental at
this stage and has not been extensively tested.
nxt.sensor:
Code not specific to a particular sensor is well tested and working
well. About half of the sensor classes were last reported working; the
rest have not to my knowlege been tested and were written blindly from
the manuacturers' specifications.
nxt.error:
If there's a problem with this one, I'm gonna cry.

Contact:

NXT-Python's Head Developer:
Marcus Wanner (marcusw@cox.net)
The support and development mailing list:
http://groups.google.com/group/nxt-python
Report bugs and suggest new features at:
http://code.google.com/p/nxt-python/issues/list

Thanks to:

Doug Lau for writing NXT_Python, our starting point.
rhn for creating what would become v2, making lots of smaller changes, and
reviewing tons of code.
mindsensors.com (esp. Ryan Kneip) for helping out with the code for a lot of
their sensors and expanding the sensors covered by the type checking
database.
HiTechnic for providing identification information for their sensors. I note
that they have now included this information in their website. ;)
Linus Atorf, Samuel Leeman-Munk, melducky, Simon Levy, Steve Castellotti,
Paulo Vieira, and anyone else I forgot for various fixes and additions.
All our users for their interest and support!



Troubleshooting Digital Sensors (don't read unless you have problems):
If you are getting errors, strange behavor, or incorrect values from a digital
sensor, chances are that there is a bug in our code. Follow these instructions
to try and find out what's wrong:
1. Test the sensor with a different access library to make sure it's working
right.
2. Check your code again. There are some weird "features" in the interfaces
of some of the sensors; make sure you are doing things right.
3. Locate the sensor class's source code in nxt-python. It should be
somewhere in nxt/sensor/<manufacturer>.py, under the heading "class SensorName(
BaseDigitalSensor):". Read any comments for instructions on certain things.

If you get to here and are still having a problem, you can either go ahead and
report it now or continue to try and find and fix the problem and then report
it (or not report it at all, but that wouldn't be very nice...).
Python experience required beyond this point.

4. Get the sensor's specifications from the manufacturer's website. Make
sure it includes a table of I2C registers and instructions for using them.
5. Pick one of the following depending on what the problem is:
####Errors:
Cause: We screwed up.
Solution: Check the line mentioned in the error for incorrect syntax or
other problem. A bit

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

nxt-python-2.0.1.zip (49.4 kB view details)

Uploaded Source

nxt-python-2.0.1.tar.gz (33.1 kB view details)

Uploaded Source

File details

Details for the file nxt-python-2.0.1.zip.

File metadata

  • Download URL: nxt-python-2.0.1.zip
  • Upload date:
  • Size: 49.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for nxt-python-2.0.1.zip
Algorithm Hash digest
SHA256 c51952a31447e4bb590574717d68644665edc647524a718fa4130c13b0ea637d
MD5 53c2a06701b1d2d2ea415b16bad8fba5
BLAKE2b-256 91daaca5c57e84646d6ed707e0f3f82f440e40e2bb62b7d4698cf331c56f428e

See more details on using hashes here.

File details

Details for the file nxt-python-2.0.1.tar.gz.

File metadata

  • Download URL: nxt-python-2.0.1.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for nxt-python-2.0.1.tar.gz
Algorithm Hash digest
SHA256 37e5bbf2de86301b654c0a2d0dc72b6b498f6a4db8d63e286cce5fe5ea10c18e
MD5 324434494263c1e295179a88887be2ed
BLAKE2b-256 6284a100191eab2426a2bb107c5499361acda95ee39f100f5d3a3f025631f855

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page