linux:legomindstorms
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
linux:legomindstorms [2013/12/30 15:42] – rlunaro | 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. | ||
- | |||
- | {{ : | ||
- | |||
- | ===== 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:// | ||
- | - Use a VirtualBox Windows Machine and run the original software. This option has the advantage that the less problematic. Specially with the RS232, as you will see soon. | ||
- | - Use of Not Quite C, but in a Windows virtual machine. | ||
- | - Use of Lejos, but in a Windows virtual machine. | ||
- | |||
- | ===== What??? No RS232??? ===== | ||
- | |||
- | Yes, my computer doesn' | ||
- | |||
- | {{ : | ||
- | |||
- | |||
- | |||
- | **The problem is** that this cable comes with a fantastic driver.... for Windows and Mac. | ||
- | |||
- | INSERT HERE PICTURE OF THE DRIVER DISC | ||
- | |||
- | So, the working of this solution depends greatly with the hability or good work of the Ubuntu and Linux engineers. | ||
- | |||
- | ===== Before Everything ===== | ||
- | |||
- | Don't plug the USB-RS232 adaptor 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 **'' | ||
- | |||
- | |||
- | ===== First Attempt: 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' | ||
- | |||
- | __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 | ||
- | </ | ||
- | |||
- | You can make a hello world to make sure that the USB-RS232 is working properly. | ||
- | |||
- | **First**, connect the unit to the PC and make sure it's on. The " | ||
- | |||
- | INSERT PICTURE OF THE BLACK UNIT HERE. | ||
- | |||
- | **Next**, turn on the RCX and point it to the black unit, so both can see each other. Remember that the connection is via infrared. | ||
- | |||
- | **Next**, 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** | ||
- | |||
- | I've run this command: | ||
- | |||
- | <code shell> | ||
- | $ nqc -S/ | ||
- | No firmware installed on RCX | ||
- | </ | ||
- | |||
- | So I'm afraid further investigation is needed. | ||
- | |||
- | **Last try** | ||
- | |||
- | I've attached a motor to the " | ||
- | |||
- | PICTURE HERE OF THE RCX WITH THE MOTOR. | ||
- | |||
- | And this is my first program: | ||
- | |||
- | <code nqc> | ||
- | task main() | ||
- | { | ||
- | OnFwd( OUT_C ); | ||
- | Wait( 400 ); | ||
- | OnRev( OUT_C ); | ||
- | Wait( 400 ); | ||
- | Off( OUT_C ); | ||
- | |||
- | } | ||
- | |||
- | </ | ||
- | |||
- | When I try to run it, I get the following error: | ||
- | |||
- | <code shell> | ||
- | $ nqc -S/ | ||
- | No firmware installed on RCX | ||
- | |||
- | </ | ||
- | |||
- | So, I definitely think that the RCX is completely blank, and I have to install some sort of firmware to have it properly working. | ||
- | |||
- | ====Where is the firmware??? | ||
- | |||
- | Check out the box of mindstorm: it should be a CD: | ||
- | |||
- | INSERT PICTURE OF THE CD HERE | ||
- | |||
- | Possible cases you might find here: | ||
- | |||
- | - 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 ==== | ||
- | |||
- | In the argot, 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: | ||
- | |||
- | INSERT PICTURE HERE | ||
- | |||
- | and a green diode lighting in the black box: | ||
- | |||
- | INSERT PICTURE HERE | ||
- | |||
- | After the process is finished, the LCD screen of the RCX should show a 0000 message, and a sound is reproduced: | ||
- | |||
- | INSERT PICTURE HERE | ||
- | |||
- | 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: | ||
- | |||
- | INSERT PICTURE HERE | ||
- | |||
- | |||
- | ==== Executing the program ==== | ||
- | |||
- | 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 ===== | ||
- | |||
- | [[http:// | ||
- | |||
- | The web page has a [[http:// | ||
- | |||
- | |||
- | |||
- | ===== Useful Links ===== | ||
- | |||
- | * [[http:// |
linux/legomindstorms.1388418126.txt.gz · Last modified: 2022/12/02 21:02 (external edit)