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 / *4545 (-20)
  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)
 
  Re: Internet Controlled Robots
 
(...) Try this: (URL) (23 years ago, 12-Apr-01, to lugnet.robotics.rcx.robolab, lugnet.robotics.edu, lugnet.robotics)
 
  Internet Controlled Robots
 
I am wanting to begin experimenting with web based control of the RCX using RoboLAB 2.0 but have not been able to find any information. Can anyone kindly lead to some resources? I have only the knowledge that this can be done, nothing else. (23 years ago, 12-Apr-01, to lugnet.robotics.rcx.robolab, lugnet.robotics.edu, lugnet.robotics)
 
  NQC for Mac OS X released
 
I'm sure there are tons of eager Mac users out there who want to start using OS X, but were afraid they'd have to give up Mindstorms. Well, the wait is over... I added a Mac OS X build of NQC to the releases at (URL) Baum (23 years ago, 12-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: R: May I use RCX to play a .wav file?
 
Zhengrong Zang escribió: (...) WAV2RCX makes a "MIDI" of the wav. I'm also trying to play a wav with the RCX, and I have found this information. The pages explain how to play a tone and a PCM wave with 1 bit speaker, like the famous PC-speaker, (...) (23 years ago, 11-Apr-01, to lugnet.robotics.rcx)
 
  AI, Neural Nets
 
A month ago or so, I read a message which had a link about Lego and Artificial Intelligence (is not the van dam one). I remember it had several videos: -Simple Method -Adaline -Neural net ... The higher level the better results. Does anyone know (...) (23 years ago, 11-Apr-01, to lugnet.robotics.rcx)
 
  RE: Revisions to RcxCC
 
oh, so that's why I got a "bad" zip this time :) ok, no problem, I'll keep using the 1st release (V.3.2) BTW, I'm now using a .bat that looks something like this: @echo off start /w RCX2.reg start rcxcc.exe start /w Cybermaster.reg start rcxcc.exe (...) (23 years ago, 11-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Revisions to RcxCC
 
(...) Okay, I've fixed the zip. Download the latest revision to rcxcc at: (URL) Hansen (23 years ago, 11-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Revisions to RcxCC
 
(...) The best laid plans of mice and men... My computer died while I was uploading to AOL so the ZIP that is there right now is corrupted. I'll try to remedy the situation as quickly as possible. John Hansen (23 years ago, 11-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Revisions to RcxCC
 
(...) I'll email you what I have. I have not enabled Scout support completely in that I have not touched the "fancy" features of RcxCC that let you watch the brick, etc... Some of them may work. Others may not. What I have enabled is the compile, (...) (23 years ago, 10-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Re: Revisions to RcxCC
 
Hi, (...) I don't think so. For my version of RcxCC Scout support, I dumped Scount memory map on various conditions.(Thanks to NQC -raw option!!) I will report the inside of Scout sometime. Scout is similar to Cybermaster as John stated, but I think (...) (23 years ago, 10-Apr-01, to lugnet.robotics.rcx.nqc)
 
  compiling C++ source under linux
 
Hi it's the 1st time I ask for your help. I have an urgent problem: i'm preparing a little software in C++ with legOS for linux for an university exam: I cannot 'make' C++ libraries nor main file: in the Makefile.common file there's a macro that (...) (23 years ago, 10-Apr-01, to lugnet.robotics.rcx)
 
  compiling C++ source under linux
 
Hi it's the 1st time I ask your help. I have an urgent problem: i'm preparing a little software in C++ with legOS for linux for an university exam: I make C++ libraries nor main file: in the Makefile.common file there's a macro that invoke (...) (23 years ago, 10-Apr-01, to lugnet.robotics.rcx)
 
  RE: Revisions to RcxCC
 
Ah :) That would be great ! It's very usefull for "debuging" Thxs, :) mc. (...) (23 years ago, 10-Apr-01, to lugnet.robotics.rcx.nqc)
 
  Very interresting pages about works around the RCX
 
Hi, Just have a closer look : (URL) smart robots, homebrew sensors & actuators, projects,... Very good work made by them. - Christophe - (23 years ago, 10-Apr-01, to lugnet.robotics.rcx)
 
  c++, sensor declaration
 
Hallo! I tried to declare sensors global, out of main(): Motor motor(Motor::B); LightSensor s(LightSensor::S3,false); int main(){ ... } make reports an error: /home/micha/legOS/util/makelx test.ds1 test.ds2 test.lx test.ds1: address out of bounds on (...) (23 years ago, 10-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