The NXT tag should be used when asking question about programming in the NXT 1.0 or 2.0 environment, or about programming the NXT 1.0/2.0 controller using other methods than the language/environment provided by LEGO.

learn more… | top users | synonyms

1
vote
0answers
6 views

Can i run a program in C# for Lego NXT with wifi connection?

I would like to run a program in C # using a wifi connection. I found a wireless sensor, WifiBlock, which can connect to the NXT and connect to the PC. But I don't know if Wifiblock can run a program ...
0
votes
0answers
8 views

how to build a 5 wall map in lejos-nxj with NXT brick

I have an NXT robot. I want to map a room without any obstacles, and "give" this map to the robot. I have this sample code: // Create a rudimentary map: Line[] lines = new Line[3]; lines[0] = new ...
0
votes
2answers
93 views

NXT - Tortoise and Hare - follow moving object - Theoretical

I'm going through Robotics past papers as a revision before the exam, and I found one problem which seems very confusing. My department does not provide answers to past papers, so I can't check if I'm ...
1
vote
2answers
66 views

Using serial port interactively with Haskell

I'm trying to send a message via the serial port to a Lego NXT using Haskell's interactive mode but I cannot figure out how to use the serialport functions correctly. I have a message that should ...
2
votes
1answer
47 views

Mathematica won't find SerialIO package

I'm following a guide from The Mathematica Journal that describes how to use Mathematica with the Lego Mindstorms NXT. I have some trouble getting started and got stuck with the SerialIO package. I ...
0
votes
2answers
115 views

Lego NXT-RobotC ultrasonic sensor

I am newbie in programming so I need help with my Ultrasonic sensor driven NXT robot. It is attached to motor(A) and I'd like it to scan the room from robot's centerline to 90° left and 90° right in ...
0
votes
1answer
116 views

Unable to Load LeJOS NXT Comm Driver

I have been trying to generate an interface with my NXT robot, using the LeJOS libraries. When I run the code I get the following error printed to the console: lejos.pc.comm.NXTCommException: Cannot ...
-3
votes
1answer
44 views

How can I open an RXE file? [closed]

I have a program written for a Lego Mindstorms NXT robot, but i can't open this file. How can I this .RXE file ?
0
votes
0answers
27 views

Lejos NXT Controller sometimes not found by PC

I am working on a project with some NXT-Controllers programmed with leJOS. Now my problem: The java-code running on my laptop won't find the NXTs - sometimes. When restarting the laptop, unplugging ...
0
votes
0answers
73 views

How to get NXT color sensor update notifications in C#?

It is possible to subscribe to LegoNXTColorSensorv2 -> AnalogSensorUpdate in VPL, but I can't find anything like Microsoft.Robotics.Services.Sample.Lego.Nxt.ColorSensor.Proxy.AnalogSensorUpdate in ...
0
votes
0answers
45 views

Can I download a programm written in C# into nxt 2.0 brick?

I use C# language and http://www.mindsqualls.net/ library. But I could not find how to download my program into brick. Actually, is it possible? Or I just have to control my nxt 2.0 robot via ...
0
votes
0answers
61 views

DOS&DIS on Android + NXT

I have an Android Phone and NXT 2.0 with lejOs. I tried to send an array from android to NXT with DataOutputStream, but nothing happend, then i tried to send a string from NXT to Android, and it ...
0
votes
0answers
57 views

Which could be an interesting AI project to program? (NXT robot) [closed]

I'm not sure of where to ask this. I'd like to tackle some AI problem with a LEGO NXT robot. Which are interesting ideas, algorithms aside (Rubik's cube solving).
1
vote
1answer
81 views

NXT programming? [closed]

I would like to program some stuff for a LEGO NXT robot. The "API" included with the robot is quite limited, so I went on to find some alternatives. There seems to be a bunch of ...
0
votes
0answers
68 views

send number to nxt with bytes

I try to send a number to NXT from android. first I test it with NXT to send and get the number message. this is what I got the 4-byte message: 0 -> 0 0 0 0 1 -> 0 0 128 63 2 -> 0 0 0 64 3 ...
0
votes
1answer
54 views

Robot-C Slow Down Motor (Tetrix)

So I want to slow down a motor on a Tetrix Robot: Here's my code: //Makes the main frame of arm move up and down motor[motorE] = joystick.joy1_y2 ; How can I make the values given by ...
0
votes
3answers
105 views

While-loop or threads?

I'm currently programming on a Lego NXT 2.0 with leJOS 0.9.1 beta firmware. I have several different sensors, like a color sensor and a ultrasound sensor. I'm using a while-loop to make the robot ...
3
votes
1answer
78 views

Memory test operation without pointers in NXC on NXT?

I'm trying to write a memory test program for the NXT, since I have several with burned memory cells and would like to identify which NXTs are unusable. This program is intended to test each byte in ...
0
votes
1answer
517 views

java eclipse: failed to load nxt usb comm driver

I have problems with java eclipse indigo, the plugin lejos for the nxt brick. The problem is that i have installed the hole software/drivers which i need to program it. operating system: windows 7 ...
1
vote
0answers
155 views

Bluetooth between NXT and android smartphone

I want my android smartphone to receive a message from a Lego Mindstorms NXT-unit. Once the message has been sent, the phone will then dial the first number in a list and if it gets a "busy signal" or ...
0
votes
0answers
138 views

NXC communication through USB

How would you send data through the USB port and receive the data in my Linux machine? task main () { byte data[2] = {1,2}; while (1) { Wait(1000); SetUSBOutputBuffer(0, 2, data); } } Compiled ...
0
votes
0answers
213 views

Python-NXT-RaspberryPi workstation possible? [closed]

So, I have wanted to make a robot & program it, etc. using the NXT as my... platform? But as I advanced, I thought of making a 'hybrid' system, that would allow me to remotely connect and ...
0
votes
1answer
113 views

Fixing the turn method in nxt-python

I want to be able to stop my robot from moving when it meets an obstacle. However the turn method in the SynchronizedMotors class under motor.py doesn't allow me to do so. How could I fix that? Is ...
2
votes
0answers
109 views

Im trying to send data with NXJ and Android Bluetooth

Im doing something with NXT and Android APP But it is not easy.. I succed to connect NXJ and Android Device, however data isn't sent. Im trying to send data from Android to NXT First, I got the ...
0
votes
0answers
108 views

Thread not working with turn method

The collisionDetection() thread is not working. I couldn't find where the bug is. I want to create a thread that uses ultrasonic to detect collison and once it does it will brake it's motors i am ...
0
votes
1answer
216 views

Garbage output to NXT screen

I've been attempting to get nxtOSEK up and running, as there are some C++ projects I'd like to work on with my NXT and in searching the web it seemed to be the most recommended system for doing so. ...
0
votes
1answer
133 views

Robot does not stop

Attached is a code that moves the robot to a particular distance, however i want it to stop moving as it approaches and obstacle. How do i do this? i have tried adding the ultrasonic to detect an ...
0
votes
0answers
45 views

Unable to get the correct motion in a loop

The code below shows a program that tells a robot to move to a ball and kick it. This is motion will repeat in a loop which holds three important methods turn_to(...), move_to(...) and kickBall(). The ...
0
votes
0answers
87 views

Robot Soccer Control Loop

Using lego nxt with color sensor and ultrasonic sensor. Trying to create a soccer control loop which controls the lego nxt to behave like it is playing football in a rectangular wooden built football ...
0
votes
0answers
70 views

is this the right way to rotate my robot to face an object? [closed]

I just want to double check is this the right way to rotate my robot to face the object ballx and bally is the coordinate of the ball and the robotx and roboty is the coordinate of the robot and the ...
0
votes
0answers
48 views

How can I be always connected to the same lego nxt brick over bluetooth ?

I am using nxt-python 2.2.2. I find it so troublesome and waste of time each time I try to connect to the brick but it keeps on showing brick not located. Is there anyway to solve this ? What should ...
0
votes
1answer
43 views

How to reduce the noise in image so it does not affect the values passed down from the server to the client

Using a server that is connected to a camera that detects the location of a ball and a robot. When the client request for the coordinates of the ball and the robot, the value of the coordinates that ...
0
votes
1answer
125 views

Rotating robot towards direction of the ball

I would like to know is this method the right way to go about this?.I want to rotate my robot which is facing north to the direction where an object is in this case the red ball. Below shows the grid ...
1
vote
1answer
82 views

How to update position of the robot and the object without repeating it values

I would like to know how could i solve the issues of values being repeatedly passed down to my activate(valueList) method.The program works in a way that there's a robot and a ball and the main loop ...
1
vote
0answers
109 views

Rotating lego nxt based on an angle

I would like to knows is there a way to rotate the lego nxt using an angle based on two points r(x1,y1) and p(x2,y2) without causing any miscalculation when the robot changes from facing north to ...
0
votes
1answer
416 views

Android NXT communication through MailBox using MindStorms

I can write to a mailbox on the NXT but cannot (yet) read from it. the Setup is to use MindDroid from GitHub as a starter. sendBTCmessage(0, BTCommunicator.START_PROGRAM, "bt1.rxe"); ...
0
votes
1answer
506 views

Difference between NXT-G visual programming and NXC C-like programming of Lego brick

I'm approaching to Lego NXT programming and I started from the very good site http://nxtprograms.com . In particular I followed instructions for the simple Segway with light sensor as balancing sensor ...
0
votes
0answers
673 views

Send message to LEGO NXT from Android

I just want to send a message just like string/number into the NXT from my Android. But NXT didnt receive the data. I use ROBOT C for NXT program and BluetoothMessage example from the ROBOT C. ...
0
votes
2answers
803 views

How to interact between an Android and a running NXT program using Bluetooth

I have modified the Minddroid github Android program to read sensors on a LEGO NXT (wonderful device!). Now I would like to read and write Bluetooth messages to a Mindstorms program running in the ...
0
votes
0answers
44 views

Appropriate Time to Close Bluetooth Connection

I am using Bluetooth to communicate with the Lego NXT and had a quick question. When is the appropriate time to close a Bluetooth connection? I am sending data sporadically throughout a program; ...
0
votes
1answer
728 views

Lego Mindstorm NXT 2.0 remote control over bluetooth from a computer

Can you control a Lego Mindstorm NXT 2.0 robot over bluetooth from a computer? For example using the arrow keys on the keyboard to make the robot move wirelessly (over bluetooth or something else)?
0
votes
1answer
164 views

How to implement a message handler similar to Android, but in normal Java

Problem: I have to connect a Lego NXT robot to an Android device via bluetooth. The NXT is running leJos, so I can use normal Java code on it. Those devices will send and receive messages from each ...
0
votes
4answers
1k views

Bluetooth sharing - Android

I searched the web a long time for a full Bluetooth communication example for android (eclipse) with another Bluetooth device. I found some codes but none of them workd. I'm developing app that will ...
1
vote
2answers
374 views

How To Save Content of GTKTextBuffer to a File

I'm writing on Ubuntu 12.04 in Anjuta with C and GTK a program. It's a graphical interface for the nbc (Lego NXT Compiler). I have a GTKTextView. Now I want to save the content of the textview to a ...
0
votes
0answers
100 views

Java: loading the NXT Fantom driver on Mac

I'm working on an IDE that will compile and download code in Not eXactly C (NXC) to the NXT bricks. In order to use the brick though we need to connect to it using the Fantom driver from Lego. we used ...
1
vote
3answers
779 views

Output Values in the Ultrasonic Sensor for the Lego NXT

I am trying to read ultrasonic sensor reading from an Lego NXT robot using the programming language NBC (Next Byte Code). It says on the Lego Website that the sensor readings range from 0 -255 cm but ...
0
votes
1answer
369 views

How can I read centimeter values with the NXT ultrasonic sensor?

I am trying to create a simple version of VFH (Vector Field Histogram) on the NXT using NBC (next byte code). To do this I need to accurately measure the distance between the robot and an object. ...
1
vote
1answer
176 views

nxt-py no backends error

i am trying to run one of the example scripts for nxt py library using pyusb. whenever i try to run the examples i get the following error: USB module unavailable, not searching there Bluetooth ...
1
vote
1answer
102 views

Java generated images can't be use in code that generated them?

I am trying to write a NXT Robot simulator with lejOS where the robot can avoid obstacles, but I want the obstacles to be generated in the code. The code below allows for the creation of the ...
1
vote
1answer
994 views

Bluetooth Ping Latency

I am currently working on a project involving a Lego Mindstorms kit. The brick is the NXT and I was curious about the bluetooth ping rates. I ran a test of 100 pings on it and got some interesting ...

1 2