To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.nxtOpen lugnet.robotics.nxt in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / NXT / *1168 (-20)
  Re: Using PF modes with mindsensors NRLink device
 
I dont know the specifics but for a start try these: PF Protocol document: (URL) Posts here: (URL) (16 years ago, 13-May-08, to lugnet.robotics.nxt, lugnet.robotics)
 
  LEGO NXT Mechatronics Book Cover
 
Hi All, I've posted an update on the book I'm writing titled, LEGO NXT Mechatronics. This book will get into how to create intelligent based machines and gadgets using the NXT as the core processor. Check out the cover of the book as well as some of (...) (16 years ago, 7-May-08, to lugnet.robotics.nxt)
 
  NXT Project Notes
 
Hi Group, I've just posted some project notes on a book I'm writing on Mechatronics. The LEGO NXT will serve as the computing device for reading I/O as well as processing. I'll be posting chapters as they become available on my blog (URL)as well. (...) (16 years ago, 28-Apr-08, to lugnet.robotics.nxt)
 
  Neural Network for the NXT
 
Two of my students created a Neural Network Manager for the NXT. You can receive sensor information from the NXT to a PC. The network is being trained on the PC and the software exports the trained network back to the NXT. There, the NXT can then (...) (16 years ago, 23-Apr-08, to lugnet.robotics.nxt)
 
  NXT Inventor's Guide Book Signing in Austin, TX
 
On Saturday, April 19th, I'm having a book signing at a Barnes & Noble in Austin, Texas for my book The Unofficial LEGO MINDSTORMS NXT Inventor's Guide (No Starch Press, 2007). The signing will begin at 2PM, and I'll be bringing two robots with me (...) (16 years ago, 11-Apr-08, to lugnet.robotics, lugnet.robotics.nxt, lugnet.events, lugnet.loc.us.tx, FTX)
 
  Re: Two dimensional arrays in NXC
 
(...) Hi Roger, yes, Java can do the job, but normally I prefer pbLua for all my NXT projects. It is completely operating system independant, you need a terminal only... From time to time, I like to play with NXC, which is available for most os'es (...) (16 years ago, 6-Apr-08, to lugnet.robotics.nxt)
 
  Re: Two dimensional arrays in NXC
 
(...) Hi Christian, If you need 2 dimensional arrays and use OSX, Java is a possible answer. You can download it from http: lejos.sourceforge.net. It supports up to 8 dimensional arrays, the Java math library, multi threading, communications via (...) (16 years ago, 5-Apr-08, to lugnet.robotics.nxt)
 
  Re: Two dimensional arrays in NXC
 
(...) Well, don't add the functionality on my account - I've redone my program a bit and now it doesn't need multi-dimensional arrays, and I think it's better this way anyways. Thanks for your help. Trevyn (16 years ago, 2-Apr-08, to lugnet.robotics.nxt)
 
  Re: Two dimensional arrays in NXC
 
(...) OK, I'll publicly make my demand louder. OSX is a great enviroment for educators... oh heck with it, I want it for me, not my students :) (16 years ago, 2-Apr-08, to lugnet.robotics.nxt)
 
  RE: Two dimensional arrays in NXC
 
Yes. It is currently a Windows only package. There's some, but not a lot, of demand for Mac version. -----Original Message----- From: news-gateway@lugnet.com [mailto:news-gateway...ugnet.com] On Behalf Of Christian Mock Sent: Monday, March 31, 2008 (...) (16 years ago, 1-Apr-08, to lugnet.robotics.nxt)
 
  Re: Two dimensional arrays in NXC
 
(...) RobotC is for MS Windows only, isn't it ? Please let me know, if an OSX version is available. Thanks Christian (16 years ago, 31-Mar-08, to lugnet.robotics.nxt)
 
  Re: Two dimensional arrays in NXC
 
(...) The stock firmware supports multi-dimensional arrays but there is a bug in the replace opcode which makes it impossible to replace an element in an array with more than one dimension. In NXC, due to the way the opcodes work in the standard (...) (16 years ago, 31-Mar-08, to lugnet.robotics.nxt)
 
  RE: Two dimensional arrays in NXC
 
As an alternative, you might want to look at the ROBOTC solution. It fully supports two dimensional arrays. You can download a 30-day evaluation version from www.robotc.net. It's best to use the pre-release version (1.22 or higher) if you'll be (...) (16 years ago, 30-Mar-08, to lugnet.robotics.nxt)
 
  Two dimensional arrays in NXC
 
Hello, I'm trying to use two dimensional arrays in NXC, like this: int onedarray[4]; int twodarray[4][4]; task main() { onedarray[2] = 1; twodarray[2][2] = 1; } I read that the stock firmware doesn't support them, so I got John Hansen's enhanced (...) (16 years ago, 29-Mar-08, to lugnet.robotics.nxt)
 
  light active mode vs inactive mode
 
I am attempting to turn the reflective light on and off periodically. It works fine in RobotC. However, in Robolab, once it is turned off (via the robolab light sensor initialization - set the light on to "false"), it won't turn on again during (...) (16 years ago, 16-Mar-08, to lugnet.robotics.nxt)
 
  Using PF modes with mindsensors NRLink device
 
Hi all, I am trying to use the different PF modes (PWM for instance) with my mindsensors NRLink. I tried adding new macros to PF.txt file without any sucess. This is the file I used. I updated this macro file in my NRLink with NXT-G and afterwars I (...) (16 years ago, 14-Mar-08, to lugnet.robotics.nxt, lugnet.robotics)
 
  motor port splitter?
 
Looks like only Mindsensor provides port splitter for nxt motors. Unfortunately, this splitter will not allow independent control. I had this application which requires ita port to be attached to one NXT motor, and one RCX lamp (while the other two (...) (16 years ago, 10-Mar-08, to lugnet.robotics.nxt)
 
  Re: Nxtcom error #89
 
Here is a shameless plug for Java .... The Lejos_NXT software system (aka NXJ) runs its defrag program every time a file is deleted from the file system. And the start up menu also shows on the LCD the amount of free flash (which,of course, is (...) (16 years ago, 9-Mar-08, to lugnet.robotics.nxt)
 
  Re: step-by-step tutorial leJOS and Eclipse
 
Hey, Due to a complete redesign of the website, the tutorial URL was changed to: (URL) (16 years ago, 9-Mar-08, to lugnet.robotics.nxt)
 
  Re: Nxtcom error #89
 
(...) Unfortunately, the standard firmware does not expose the ability to iterate through the files in the file system. You can do that with the enhanced NBC/NXC firmware, but even then the information you can get about a file is just its name and (...) (16 years ago, 7-Mar-08, to lugnet.robotics.nxt)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

©2005 LUGNET. All rights reserved. - hosted by steinbruch.info GbR