linux:legomindstorms
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
linux:legomindstorms [2022/12/02 21:02] – external edit 127.0.0.1 | linux:legomindstorms [2024/10/05 17:01] (current) – removed rlunaro | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== First steps with Lego Mindstorms ====== | ||
- | ===== Intro ===== | ||
- | |||
- | My brother has lent me a Lego Mindstorms version 1.5. It is quite old, by the specifications I think that the product may be dated of 1998. **My objective is to make it work under linux** in a modern computer without a serial cable, to let my son work with it. | ||
- | |||
- | {{ : | ||
- | |||
- | I suppose that if you come to this page you are somewhat familiar with Lego Mindstorms, however, I will describe some of the main elements of the kit: | ||
- | |||
- | * The RCX is the " | ||
- | * A device that you can connect to the computer via an RS232. I call in this document "the black box" because of this color. | ||
- | * Motors, sensors, etc. The usual robot stuff. | ||
- | |||
- | ===== Options to have it work under Linux ===== | ||
- | |||
- | I will try the following options in the same order depicted here: | ||
- | |||
- | - Use of [[http:// | ||
- | - Use of [[http:// | ||
- | |||
- | Of course, there are other options, but I won't discuss here. | ||
- | |||
- | ===== RS232 Communication in the XXI Century ===== | ||
- | |||
- | Modern computers doesn' | ||
- | |||
- | |||
- | [[http:// | ||
- | |||
- | ==== Checking that it works under Linux ==== | ||
- | |||
- | One step is to check that it works properly under linux. Here are the basic steps: | ||
- | |||
- | Don't plug the USB-RS232 adapter yet!!! Before this, run a '' | ||
- | |||
- | <code shell> | ||
- | $ sudo tail -f / | ||
- | </ | ||
- | |||
- | Now, **plug your cable**. You should view something like this: | ||
- | |||
- | < | ||
- | Dec 30 12:29:18 petrus kernel: [17198.868053] usb 4-1: new full speed USB device number 3 using uhci_hcd | ||
- | Dec 30 12:29:18 petrus mtp-probe: checking bus 4, device 3: "/ | ||
- | Dec 30 12:29:18 petrus kernel: [17199.032177] pl2303 4-1:1.0: pl2303 converter detected | ||
- | Dec 30 12:29:18 petrus kernel: [17199.044237] usb 4-1: pl2303 converter now attached to ttyUSB0 | ||
- | Dec 30 12:29:19 petrus mtp-probe: bus: 4, device: 3 was not an MTP device | ||
- | </ | ||
- | |||
- | This **'' | ||
- | |||
- | |||
- | ===== Not Quite C ===== | ||
- | |||
- | This is my first attempt and my first try to make the USB-RS232 adaptor to work. I know that Java doesn' | ||
- | |||
- | ==== Documentation ==== | ||
- | |||
- | NQC is a programming language by itself, don't take it slightly. __You can find documentation about NQC here: [[http:// | ||
- | |||
- | ==== Hands on ==== | ||
- | |||
- | You can install NQC in Ubuntu by typing: | ||
- | |||
- | <code shell> | ||
- | $ sudo apt-get install nqc | ||
- | </ | ||
- | |||
- | My first step will be to reach the RS232 adapter correctly and reach the black box. So, connect your RS232 adapter to the black box and make sure this is on, and with the batteries connected. The " | ||
- | |||
- | {{ : | ||
- | |||
- | **Optionally**, | ||
- | |||
- | Now run the following code: | ||
- | |||
- | <code shell> | ||
- | nqc -S/ | ||
- | </ | ||
- | |||
- | When running it, I've observed no error messages and no '' | ||
- | |||
- | |||
- | {{ : | ||
- | |||
- | |||
- | **Other commands to test proper running** | ||
- | |||
- | You can try other commands that doesn' | ||
- | |||
- | <code shell> | ||
- | $ nqc -S/ | ||
- | No firmware installed on RCX | ||
- | </ | ||
- | |||
- | ==== Install the firmware in the RCX (the yellow box) ==== | ||
- | |||
- | The next step is installing the firmware in the RCX. There are various firmwares out there, but for NQC we need the official firmware from LEGO. | ||
- | |||
- | |||
- | |||
- | ===Where is the firmware??? | ||
- | |||
- | Check out the box of mindstorm: it should be a CD which contains the firmware. To get the firmware from the CD, you should face the following scenarios: | ||
- | |||
- | - The firmware file is in the cd and you can extract directly without hassle. It should be a file like '' | ||
- | - The firmware file is in the CD, but apparently when trying to extract using linux, it fails. This is because the file format of the CD is very old. Try to extract the file using a windows machine or a virtual windows machine. If it is your case, I recommend to make a backup copy of the contents of the CD in another Cd. But copy the contents, not make a copy of the whole cd, because the older filesystem will be kept too. | ||
- | - The firmware file is not in the cd, but it is in one of the *cab files. In that case, you can find instruction in this page: | ||
- | |||
- | === Downloading the firmware === | ||
- | |||
- | Placing the firmware file in the yellow box (the RCX) is called " | ||
- | |||
- | Run the following command: | ||
- | |||
- | <code shell> | ||
- | $ nqc -S/ | ||
- | Downloading firmware: | ||
- | </ | ||
- | |||
- | You should see a message in the RCX about the progress of the download: | ||
- | |||
- | {{ : | ||
- | |||
- | and a green diode lighting in the black box (it's not easy to see it): | ||
- | |||
- | {{ : | ||
- | |||
- | After the process is finished, the LCD screen of the RCX should show a 0000 message, and a sound is reproduced: | ||
- | |||
- | {{ : | ||
- | |||
- | The installation of the firmware will be there until the batteries are removed. | ||
- | |||
- | For example, the following command: | ||
- | |||
- | < | ||
- | nqc -S/ | ||
- | </ | ||
- | |||
- | Will have the effect that in the RCX the program number 2 is selected: | ||
- | |||
- | {{ : | ||
- | |||
- | |||
- | ==== My first program ==== | ||
- | |||
- | |||
- | I've attached a motor to the " | ||
- | |||
- | {{ : | ||
- | |||
- | And this is my first program: | ||
- | |||
- | <code c> | ||
- | task main() | ||
- | { | ||
- | OnFwd( OUT_C ); | ||
- | Wait( 400 ); | ||
- | OnRev( OUT_C ); | ||
- | Wait( 400 ); | ||
- | Off( OUT_C ); | ||
- | |||
- | } | ||
- | |||
- | </ | ||
- | |||
- | |||
- | To run and download the program into the RCX, you should do the following: | ||
- | |||
- | <code shell> | ||
- | $ nqc -S/ | ||
- | Downloading Program: | ||
- | Battery Level = 8.7 V | ||
- | </ | ||
- | |||
- | Now, click on the " | ||
- | |||
- | |||
- | |||
- | ===== Second Attempt: LEJOS ===== | ||
- | |||
- | ==== Install ant ==== | ||
- | |||
- | You should have '' | ||
- | |||
- | <code shell> | ||
- | $ sudo apt-get install ant | ||
- | </ | ||
- | |||
- | And should have '' | ||
- | |||
- | <code shell> | ||
- | sudo apt-get install libusb-dev | ||
- | </ | ||
- | |||
- | After doing that, make sure that the usb.h file is available in your destination system. | ||
- | |||
- | |||
- | ==== Hands on ==== | ||
- | |||
- | [[http:// | ||
- | |||
- | The web page has a [[http:// | ||
- | |||
- | When I've checked out the web page, the download link didn't work. But you can go directly to the [[http:// | ||
- | |||
- | When you download and uncompress the file '' | ||
- | |||
- | Then start by setting the environment variable NXJ_HOME: | ||
- | |||
- | <code shell> | ||
- | $ cd LEJOS_NXJ_DIRECTORY | ||
- | $ NXJ_HOME=$(pwd) | ||
- | $ export NXJ_HOME | ||
- | </ | ||
- | |||
- | Then go to the '' | ||
- | |||
- | In my case, this command failed. The problem was in the '' | ||
- | |||
- | <code shell> | ||
- | gcc -Wall -std=gnu99 -fPIC main_jlibnxt.c | ||
- | </ | ||
- | |||
- | |||
- | And it fails with this error: | ||
- | |||
- | < | ||
- | main_jlibnxt.c: | ||
- | </ | ||
- | |||
- | **Solution: | ||
- | |||
- | - Locate the usb.h file in your filesystem: '' | ||
- | |||
- | I've fixed the solution executing the '' | ||
- | |||
- | <code shell> | ||
- | $ cd NXJ_HOME/ | ||
- | $ ant | ||
- | </ | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | ===== Useful Links ===== | ||
- | |||
- | * [[http:// |
linux/legomindstorms.1670014949.txt.gz · Last modified: 2022/12/02 21:02 by 127.0.0.1