Tagged Questions
A tag for questions concerning the leJOS-NXJ java subset for programming the LEGO Mindstorms NXT brick
6
votes
1answer
2k views
What is the difference between the Lego Mindstorms 1.0 and 2.0
I am thinking about buying a mindstorms kit (I don't currently own one but I have used 1.0 at university) and I am a bit unsure as to the benefits of 2.0 over 1.0. I have seen other posts on the ...
2
votes
1answer
101 views
Lejos (java) and interfaces // UML suggestion
I created a project with lejos 0.9. Now what i know is that i'm only able to upload and compile classes (from java to nxj files) with the eclips plugin when the class has a public static void ...
2
votes
4answers
310 views
Can I distribute a JDK with my application?
I am working on an application called Enchanting. The application, based on Scratch, emits Java source code and compiles it for uploading onto LEGO Mindstorms NXT Robots.
While the application is ...
2
votes
4answers
321 views
Is this valid Java code?
I'm using Eclipse, and it is perfectly happy with the following code:
public interface MessageType
{
public static final byte KICK = 0x01;
public static final byte US_PING = 0x02;
...
2
votes
4answers
187 views
How can I interrupt a sequence of procedures in Java?
I have a bunch of procedures that need to be executed successively until either they are all executed, or a certain condition is met. Here's the basic code that needs to be executed until a condition ...
1
vote
2answers
52 views
Java server code passes data to running java program
Is there a way I can pass data, from Java server code, to a Java program which is already running?
I need to transfer data in real time, and I cannot integrate the two programs as they use a ...
1
vote
1answer
346 views
Add a custom JDK to Netbeans 6.9.1
I'm trying to add a custom JDK to Netbeans 6.9.1 on OSX 10.6.5. The JDK is just a collection of classes created for leJOS, a Java package for the Lego NXT robot. I can't just add the classes for this ...
1
vote
1answer
229 views
Need Help Reading Data From Inputstream
I have a robot and a GUI application running on a GUI. I have a while loop on the robot side that is constantly sending data to the GUI.
Before i send a value, i send first a value which the GUI will ...
1
vote
5answers
82 views
Is it standard behavior for this code to throw a NullPointerException?
I've had a big problem in some library code, which I've pinned down to a single statement:
System.out.println((String) null);
Ok, the code doesn't actually look like that, but it certainly calls ...
0
votes
1answer
23 views
Lejos - Cannot find Symbol Tachopilot
Currently attempting to get some code to compile using Lejos for the Lego NXT brick. The command I run is nxjc Nxt_code.java and I get a Cannot find symbol error. TachoPilot has been imported. Here is ...
0
votes
0answers
16 views
mp3 file incorporation in JAVA
I have been using lejOS for quite a while and just wanted to know how I could incorporate an wav format file into my program. How do you send an wav format file to the NXT and then how can I ...
0
votes
1answer
26 views
Lejos NXT - How can i detect a motor stall?
I try to build a Rubiks Cube Solver with 4 arms to grab the cube.
I am using the lejos firmware version 0.9.0. My problem is how can i detect that a motor is stalled?
For example:
Motor.A rotates ...
0
votes
0answers
66 views
lejos noclassdeffounderror lejos/pc/comm/NXTComm
First I created a Java App to test my code to contact the NXT Brick using Bluetooth. Once this worked I created a Webservice instead which should connect to the NXT Brick through Bluetooth.
This is ...
0
votes
1answer
31 views
LeJOS NXT movement in centimeters
I just started learning LeJOS programming and have a small probelm. I understand that I can measure movement distance in seconds and degrees. Is it possible to measure distance in centimeters, for ...
0
votes
0answers
46 views
Bluetooth feedback not arriving
I am connecting to a Lego NXT brick via Bluetooth on Android. I created a Communications object via the NXTCommAndroid as suggested by the LeJos site. I create input and output streams successfully ...
0
votes
4answers
72 views
Why do static classes crash my robot?
I have made the static class below so any class may access any of my lejos robot's sensor methods without me having to make an instance for each class.
However whenever I call a method such as ...
0
votes
1answer
182 views
Lejos on OSX 10.7 (Lion)
I have Lion OSX installed on my Mac and I want to use my mac to develop on Lejos.
I searched a lot for a decent install guide but I couldn't find one. So, I tried other tutorials online but it won't ...
0
votes
0answers
505 views
installing lejos plugin in eclipse ( cannot load jfantom.dll )
So I am trying to get lejos (the software for lego robots) to work in my eclipse but when i click the lejos nxj item in the eclipse toolbar and select upload firmware I get the following error
...
0
votes
0answers
197 views
jmf Program for color recognition
I am working on a project that uses a Lego Mindstorm NXT robot and a webcam. My robotic car uses an ultrasonic sensor and the webcam for distance and color recognition. The robot detects colors red ...
0
votes
1answer
926 views
Can't run leJOS NXJ sample project
I try to install leJOS NXJ on my MAC OS X and run it's sample, but after I do what it wants and export NXJ_Home Path file and etc. and install netbeans plugin and create it sample project (Creating ...
0
votes
1answer
960 views
Lejos RGB color sensor
Does anyone have a code example of using the NXT RGB Color Sensor in the Lejos programming language. I have tried several different uses of setType() and setMode() but to no avail.
0
votes
1answer
177 views
Need Help Again Reading Data From Inputstream
Yesterday i posted a question about a problem i had concerning inputstream reading and i was helped.
I find myself in similar situation but this time i know that I am doing the right thing but yet it ...
0
votes
1answer
68 views
Need Help And Ideas In Solving A Collection Problem
I have already posted a question today. This question is about the same project but unrelated. I am developing an application for the Lego NXT Mindstorm robot. I have two robots and a GUI running on ...
0
votes
1answer
138 views
How do I set up a Java-like language (LeJOS NXJ) in Visual Studio 2005 that uses an external compiler?
Recently, I installed the JDK and a java library called LeJOS NXJ, for controlling a LEGO Mindstorms robot. I'd like to be able to set up the language to run through visual studio, which offers J# ...