Questions regarding the programing and robotic aspect of the LEGO© line of construction toys.
-1
votes
0answers
8 views
I've been trying to make my lego robot go round and round a table just for once and then stop
I used a switch sensor(ultrasonic)to detect the obstacle.It works well but I need a condition to exit that loop iin which I have the switch.How can I stop it in order to follow the walls of that ...
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 ...
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 ...
-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
28 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
1answer
38 views
Turning Motor on Lego NXT returns error 0002EA Type 2
I a writing a program using RobotC for the Lego NXT to imitate the behaviour of a puppy. This section of code is supposed to rotate the head which is connected to motor port 3 and read the value on ...
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
2answers
53 views
How to reset a variable back to 0 after use in a loop in NXC
For some odd reason the variable "angle" will not reset back to 0 when the loop ends.
All of the math is just calculating c = sqrt(a^2 + b^2 - 2abCos(theta)) the robot won't do all of the math in one ...
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 ...
2
votes
0answers
223 views
Reading data from lego ultrasonic/color sensor via Android app
I am working on app for Android for controlling Lego Mindstorm. I have done the basics (I can connect, send, recieve messages), so I can control motors. But I have problem with sensors. I have ...
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 ...
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
82 views
Making lego mindstorm nxt follow the ball as the ball moves?
Is there anyway to make the lego mindstorm nxt moves as the ball moves?.Its using nxt-python and its feeding live data from a camera which uses open cv to detec the robot and the ball coordinates.
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
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
0answers
72 views
How can I run these two same methods differently
Currently I am working on a project which includes a Lego NXT with Python. I am trying to get my robot to move for 360 ticks and move another 360 ticks again after the first method has finished. ...
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
0answers
69 views
Reading LEGO Ultrasonic distance sensor in Minddroid for Android
I can read the touch sensor using the code for the Minddroid GitHub project. The Ultransonic Distance Sensor (Eyes) seems to be a bit different. Anybody know how to do this?
0
votes
2answers
805 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 ...
2
votes
1answer
265 views
Messages, Handlers and Threading : Lego Mindstorms bluetooth communication
This question refers to writing an application that communicates with the NXT block on a lego mindstorms robot.
What I want to do
NXC (not exactly C, a language for writing programs for the NXT) ...
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)?
1
vote
2answers
376 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 ...
3
votes
2answers
2k views
Linux Bluetooth programming in C & socket.h
I'm a new stackoverflow user! I'm writing because I have some problems programming Bluetooth with C on my KUbuntu 12.04.
I'm trying to connect a device (LEGO Mindstorm Brick) to my notebook through a ...
0
votes
1answer
286 views
Robotic Navigation using Kinect
Till now I have been able to create an application where the Kinect sensor is at one place. I have used speech recognition EmguCV (open cv) and Aforge.NET to help me process an image, learn and ...
6
votes
2answers
393 views
Number of combinations with LEGO plastic bricks C++
You have some LEGO plastic bricks, all bricks are 1x1x1. Also you have one tile, 1xN (N <= 80), on which you should place the LEGO bricks. You can order them in sequences (one sequence is correct ...
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 ...
1
vote
2answers
155 views
jQuery “stacking” divs (like Lego)
I've been working on something fun, stacking my divs like lego. I've been able to get it to stack once using appendTo and positioning, but if you click more than once the divs appear in an unexpected ...
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. ...
2
votes
2answers
430 views
Count the number of ways to combine LEGO bricks [closed]
I have an arbitrary array of lego bricks. I also have some figures made of 3 lego bricks. I want to find out how many combinations of figures I can create of the current array of lego bricks.
Anybody ...
0
votes
1answer
218 views
LabVIEW: multiple loops using the NXT
I have two loops which, when tested separately, works!
One loop reads the sonar-sensor and controls motor B+C. The other loop also reads the sonar-sensor but controls motor A. When these are in two ...
1
vote
0answers
117 views
Controlling the Lego WeDo Device
Has anyone written a API for the Lego WeDo Device in C#.
I found a Python API, but hopefully someone has done it in .net.
https://github.com/itdaniher/WeDoMore
I have tried writing my own using ...
2
votes
1answer
628 views
Parse Lego Digital Designer *.lxf files
I was toying with Lego digital designer the other day (http://ldd.lego.com/) and I was wondering if the saved file could be relatively easily parsed.
As anybody ever done that before? I'm looking for ...
0
votes
1answer
357 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 ...
1
vote
1answer
394 views
Can I use Visual Studio 2010 to program Mindstorm NXT2 in C++
I'm considering to buy mindstorm NXT2 and I'd like to know if it is possible to develop c++ software for NXT2 using Visual Studio 2010 as IDE.
I guess it will be funny to improve my C++ skills (I ...
4
votes
1answer
2k views
CoreBluetooth Pairing To Lego NXT
I am trying to use Apple's CoreBluetooth framework to connect an iPhone or iPod Touch to a Lego NXT. However, it does not seem like there is any documentation from Apple about this framework at all. ...
0
votes
1answer
184 views
Lego Mindstorms programming - which book do you recommend for kids?
There's a ton of books on Lego Mindstorms programming out there - not least from the always-excellent No Starch Press.
Which book would you recommend for direct use by, or for teaching, children - ...
0
votes
1answer
206 views
Error creating service xinputgamepad when using XBOX Controller to connect Lego NXT to MRDS
I'm trying to implement the simple Robotics example connecting my Lego NXT to MRDS using an xbox controller (Microsoft Robotics Studio and Lego Mindstorms NXT)
Everything compiles fine but when I go ...
0
votes
4answers
150 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 ...
3
votes
3answers
263 views
What are my language choices for lego NXT?
It is unclear from wikipedia etc (without installing a bunch of crap and testing) which languages I can use to write programs which can be copied and run standalone on the NXT brick. What languages ...
1
vote
1answer
450 views
Lego Mindstorms NXT - where to find byte codes for bluetooth polling?
Could not find any any describtion about the bytecodes,
which a mindstorms robot would receive, if it would be polled as a bluetooth slave device.
Do someone know, where to get them?
8
votes
2answers
374 views
Can I develop Lego Mindstorms in Scala?
Is there a Java SDK for Lego Mindstorms? Can I compile Scala code to JAR and run it in Lego Mindstorms?
0
votes
2answers
275 views
Simultaneously bluetooth remote (android) and run program
I'm a student on a hogeschool in the Netherlands. We're working with the LEGO Mindstorms NXT for a project.
However, I'm using my phone (minddroid and other applications) to drive the NXT, but I ...
