Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
LegoMindstorms
Edit
PageHistory
Diff
Info
LikePages
__Lego__ __Mindstorms__ is a family of robotics kits from the company famous for those open-ended brick-building kits. Each Mindstorms kit includes a few motors, an assortment of sensors, plus a collection of more-regular Lego parts (from the __Technics__ range), together with a fully-programmable microcontroller. The company includes, in the box, proprietary GUI-based programming environments for Macintosh and Microsoft Windows machines, but it has also been cooperative with the development by others of open-source programming tools. The latest product in this range is the Mindstorms NXT 2.0 kit, available for about $500. This includes three servomotors, two touch sensors, a colour sensor (with built-in switchable light source), and an ultrasonic sensor which can be used for active ranging or passive sound detection. The microcontroller now has the option of hooking to a PC via either USB or Bluetooth. !! Software For Linux users, the best option for programming these seems to be a pair of languages called NBC (a low-level assembler) and NXC (a higher-level C-like language). NXC compiles to the NBC bytecodes, which in turn are interpreted by firmware on-board the NXT controller. These languages are part of the open-source [Bricx Command Center|http://bricxcc.sourceforge.net/] project, the main part of which is Windows-only. However, the [nbc|http://bricxcc.sourceforge.net/nbc/] command-line tool can be built for Linux, and this implements both languages as well as functions for uploading compiled programs into a connected NXT microcontroller. A useful library is [NXT_Python|http://home.comcast.net/~dplau/nxt_python/index.html]. This provides functions that can be used to directly examine and manipulate the state of the NXT controller from the host PC. Notwithstanding its requirements specifically mentioning Python 2.4, it does seem to work fine with Python 2.5. Another compiler is [NXTGCC|http://nxtgcc.sourceforge.net/wiki/index.php/NXTGCC]. Unlikes NBC/NXC, this compiles to actual machine language for the ARM CPU. It can be used to write completely new firmware for the NXT controller. !! Device Permissions Setup You don’t need any special drivers to connect the NXT controller to a Linux box (at least via USB; I haven’t tried Bluetooth); all communication is done through the userland <tt>libusb</tt> library. However, by default, <tt>udev</tt> will create the device entry as only accessible by root. To fix this, create a new group in your <tt>/etc/group</tt> file called, say <tt>legonxt</tt>. Add your own nonprivileged username to this group (you will need to logout and login again to become a member of this group). Then, create a new file in your <tt>/etc/udev/rules.d</tt> (for example, call it <tt>70-lego.rules</tt>) containing the following line: <pre> SUBSYSTEM=="usb", ATTR{idVendor}=="0694", GROUP="legonxt", MODE="0660" </pre> This gives read/write access to the device to all members of the <tt>legonxt</tt> group. You may find versions of the above <tt>udev</tt> rule elsewhere on the Web which also create a symlink for the device with a name like <tt>/dev/legonxt-</tt>''xxx''. As far as I can tell, this is unnecessary. <tt>libusb</tt> certainly doesn’t need it. !! NBC/NXC Building Notes Ignore the source release tarballs linked from the NBC Beta Releases page above; they are all out of date. Instead, get the latest source out of SubVersion (note you will need [Free Pascal|http://www.freepascal.org/] to compile it): <pre> mkdir nbc nbc/beta svn co https://bricxcc.svn.sourceforge.net/svnroot/bricxcc bricxcc/ # above may take a few minutes make -C bricxcc/ -f bricxcc.mak archivenbcunix # above puts Unix/Linux-compilable source tarball in nbc/beta cd nbc tar xzvf beta/nbc-1.0.1.b36.unix-src.tgz make nbc </pre> The instructions say to <tt>make install</tt> at this point, but as of this writing that will only install the ManPage into <tt>/usr/share/man/man1</tt>. To install the executable, do something like <pre> install -m 755 NXT/nbc /usr/local/bin/ </pre> !! See Also * [Lego’s own site|http://mindstorms.lego.com/], with downloadable software and hardware development kits and open-source firmware. * [nxtasy.org|http://nxtasy.org/]—discussion forums, software news and informational articles about the insides of the NXT. For example: * [NXT filesystem description|http://nxtasy.org/2006/08/03/nxt-memory-and-file-system-organization/] * [NXT graphic file format|http://nxtasy.org/2007/02/20/ric-revealed/] * [NXT sound file formats|http://nxtasy.org/2006/10/24/making-music-with-nxt-melodies/] * [What’s an IOMAP|http://nxtasy.org/2006/08/05/whats-a-nxt-iomap/] * [LiNXT|http://sourceforge.net/projects/linxt/]—a simple Perl-based tool to upload and download files to/from the NXT and do one or two other functions. Requires <tt>Device::USB</tt> from CPAN. * [libnxt|http://code.google.com/p/libnxt/] provides low-level communication with the NXT controller, including the ability flash new firmware. * [pbLua|http://www.hempeldesigngroup.com/lego/pbLua/] is a development environment running on the NXT controller itself. * [NXTFilesystemNotes]
2 pages link to
LegoMindstorms
:
NXTFilesystemNotes
LawrenceDoliveiro