To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.rcxOpen lugnet.robotics.rcx in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / RCX / *4560 (-20)
  Re: New RcxCC revision posted
 
(...) Be sure to use the most recent version to test the startup options. I tested it the other day and it seemed slightly broken but the last round of fixes which I uploaded on Saturday may have fixed the problems. I'll be doing some more testing (...) (23 years ago, 16-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Dropping your RCX on the floor...
 
"Tobias Möller" <tobias.moller@telia.com> wrote in message news:39DDEC5A.24DD89...lia.com... (...) didn't... Heh, this reminds me of when I first opened my RCX set. I hadn't used lego for years, and was working as a programmer, and thought, (...) (23 years ago, 16-Apr-01, to lugnet.robotics.rcx)
 
  Re: RoboLab prg size limit?
 
(...) There are some minor bugs in Robolab 1.5, so I always use version 2.01 or higher. If you email me the program, I would be happy to play with it. (23 years ago, 16-Apr-01, to lugnet.robotics.rcx.robolab)
 
  Re: Using 'containers' in Robolab
 
(...) What version of Robolab are you using? I use Robolab 2.01 and have not had the problems you are describing. As an example of using the Angle Sensor, I tried the program: Empty Container - Blue Zero Angle Sensor - Port 1 Wait 2 Play Sound 5 (...) (23 years ago, 16-Apr-01, to lugnet.robotics.rcx.robolab)
 
  RE: Internet Controlled Robots
 
What a strange coincident. I had just posted the message when I went to my mailbox to find an examination copy of your text. I immediately checked to see if your text included any information and of course found it. You text is wonderful and as I (...) (23 years ago, 16-Apr-01, to lugnet.robotics.rcx.robolab, lugnet.robotics.edu, lugnet.robotics)
 
  RE: New RcxCC revision posted
 
(...) As I said earlier, I use this kind of setup. These options seam perfect, thanks John. I'll test it, when I get back home and post my findings. mc. (23 years ago, 16-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Using 'containers' in Robolab
 
Jerry, (...) What kinds of numbers to see on the display and what kinds of numbers do you see in the container? Can you send me your program? or at least post an image of it somewhere? :) (23 years ago, 16-Apr-01, to lugnet.robotics.rcx.robolab)
 
  Re: Internet Controlled Robots
 
(...) Chapter 21 of my book "Creative Projects with LEGO Mindstorms" (see (URL) is called Advanced Communication, and covers several advanced communication projects, including "Internet Communication with ROBOLAB". (23 years ago, 16-Apr-01, to lugnet.robotics.rcx.robolab, lugnet.robotics.edu, lugnet.robotics)
 
  Using 'containers' in Robolab
 
I'm having a bad time with the use of containers. I have an angle-container and then a container-fork. I was careful to use a (blue) modifier for both of them, set the port number on the angle-container and the specified number to the (...) (23 years ago, 14-Apr-01, to lugnet.robotics.rcx.robolab)
 
  Re: New RcxCC revision posted
 
(...) You can select text and indent it with Ctrl+Shift+I and unindent it with Ctrl+Shift+U. These keystrokes are configurable in the Preferences dialog. Look for ecBlockIndent and ecBlockUnindent. Scanning through the list of editor commands might (...) (23 years ago, 14-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Fast data acquistion on PC from RCX ?
 
I want to do fast data acquistion (100 samples/second) continuously with the RCX and transport the data in realtime to a PC. I'm building a oscilloscope to monitor sensors and globals variables on the PC, a bit like "Mr. Sensor Program" (URL) was (...) (23 years ago, 14-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: New RcxCC revision posted
 
(...) Well I'm glad you apologized. :) I just finished downloading and testing your previous version only to find that there is even a newer one. I really like the new editing features BTW. The multilevel undo and the line numbers are a great (...) (23 years ago, 14-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: New RcxCC revision posted
 
(...) Okay, another round of fixes/modifications. Sorry I'm making these changes so fast. I am *really* interested in hearing from anyone who is trying out my revised RcxCC, by the way. :-) Anyway, this version (available from the link above) (...) (23 years ago, 13-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Wishlist leJOS
 
Hi! I'm a leJos newbie, but at a glance, I miss the logging functions that I think NQC has, the ability to store numbers in the RCX for later upload. Is ther a chance that it will be implemented ? At least I would appreciate it Björn Lundin (23 years ago, 13-Apr-01, to lugnet.robotics.rcx.java)
 
  Re: Which way is faster?
 
By "fastest", I assume you mean the smallest worst case latency between a condition happening and the RCX responding to it. Option #2 has the drawback that while the RCX is responding to one condition, it won't be looking for the other ones. So the (...) (23 years ago, 13-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Which way is faster?
 
I want to know which way is faster: 1. Use three tasks to watch sensors task watch1() { while (true) { if () { .. } } } task watch2() { while (true) { if () { .. } } } task watch3() { while (true) { if () { .. } } } 2. Use one task with multi (...) (23 years ago, 13-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Dynamic lists allowed?
 
(...) Thanks for your help. The program is running fine now. Would you happen to know if anyone has created this sort of high level functions? If not more people might be interested. jm (23 years ago, 13-Apr-01, to lugnet.robotics.rcx.legos)
 
  New RcxCC revision posted
 
Anyone who is interested in trying my revised RcxCC can find a copy at: (URL) just uploaded another revision that implements several new features: 1) command line switches: /? or /help = display a help message on startup before continuing /COM=N = (...) (23 years ago, 12-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Dynamic lists allowed?
 
(...) This should be "struct tNode *next;" (...) After this, any time you want to refer to a tNode, you need to say "struct tNode". Or you can put "typedef struct tNode tNode" and then use the "tNode" as a type like you're doing. (23 years ago, 12-Apr-01, to lugnet.robotics.rcx.legos)
 
  Dynamic lists allowed?
 
Since I just got started with legOs (thanks to 'Extreme Mindstorms'), I'm creating a set of high level utility functions. This one here is intended to display a DYNAMIC list of values, but there seems to be a problem with the use of 'struct' and (...) (23 years ago, 12-Apr-01, to lugnet.robotics.rcx.legos)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

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