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 / *9490 (-20)
  Problem with IR
 
For some reason I'm having a problem downloading with NQC. I previously had the serial tower set up at the end of a track. The rcx on my robot goes up and down it. I used to have occasional problems with the IR comms, but I'd change the battery and (...) (19 years ago, 19-Nov-05, to lugnet.robotics.rcx)
 
  RE: different light readings...
 
Hi David, I am sorry that I did not clarify my question. Thank you very much for taking the time out to help though! I fully understand that variations that light sensor produces, and I do make calibration the first thing to do before I run my bots. (...) (19 years ago, 15-Nov-05, to lugnet.robotics.rcx.robolab, lugnet.robotics.rcx)
 
  Re: different light readings...
 
(...) Different light sensors will produce different readings. The range of readings you get will also vary between different light sensors (for example, between the same white surface, and the same black surface, one light sensor might have a (...) (19 years ago, 15-Nov-05, to lugnet.robotics.rcx.robolab, lugnet.robotics.rcx)
 
  different light readings...
 
Hi, I have these 2 different light sensors. One reads "41" vs another reads "34" on the same area. I have troubleshoot it by switching ports, different RCX brick. The reading different stays the same. Is this reasonable because they might have a (...) (19 years ago, 14-Nov-05, to lugnet.robotics.rcx.robolab, lugnet.robotics.rcx)
 
  Robolab Motor Settings - ATTN. Dick Swan
 
Hello Dick, I am working with a professor at the University of Central Florida and we would like to use the Robolab software for several of our robotics classes. The one issue we see in doing that is that the motor settings in the software only (...) (19 years ago, 13-Nov-05, to lugnet.robotics.rcx.robolab)
 
  dllx problems, with lnpd 0.9.0
 
Hi, I'm having problems getting dllx to work. I expanded the lnpd 0.9.0 zip file from sourceforge. I did ./configure and make with no problems or error messages. Now, I run lnpd with "lnpd --nolock". Then I do "dllx test.lx" and the green light on (...) (19 years ago, 13-Nov-05, to lugnet.robotics.rcx.legos)
 
  Re: pre-releases brickos-0.9.0/lnpd-0.9.0 avail. for testing/feedback
 
Hi, I'm having problems getting dllx to work. I expanded the lnpd 0.9.0 zip file from sourceforge. I did ./configure and make with no problems or error messages. Now, I run lnpd with "lnpd --nolock". Then I do "dllx test.lx" and the green light on (...) (19 years ago, 13-Nov-05, to lugnet.robotics.rcx.legos)
 
  Re: explain polarity to middle school children
 
(...) Hmmmm, that is a challange, because any cursory example leaves out the physics. I was just thinking perhaps if you likend polarity to a visual of a two lane highway. Trafic going in opposite directions. Flow and return. On the surface, (...) (19 years ago, 9-Nov-05, to lugnet.robotics.rcx.robolab)
 
  explain polarity to middle school children
 
I tried to create a couple of images to explain give children, age 10 to 12, a good understanding of what polarity is. They all know changing the direction of the motor. However, I am trying to provide more details without going over their head. (...) (19 years ago, 9-Nov-05, to lugnet.robotics.rcx.robolab)
 
  Re: programming tips
 
(...) With the standard firmware, not that I know of. You *can* block all incoming signals by continuously broadcasting. Having a task repeatedly transmit a simple message endlessly means that the RCX can't recieve normal messages, possibly (...) (19 years ago, 2-Nov-05, to lugnet.robotics.rcx.robolab, lugnet.robotics.rcx)
 
  programming tips
 
Hi, I am contemplating if it is smart way to intercept un-welcoming signal to the RCX, such as the remote shutdown, etc. ---...--- -------- Best Regards, Elizabeth Mabrey (19 years ago, 2-Nov-05, to lugnet.robotics.rcx.robolab, lugnet.robotics.rcx)
 
  Re: error in using brickOS under Bricx Command Center
 
(...) I tried with both 0.2.6 and 0.9.0 (...) I am sorry for imprecise expressions. I meant that I followed your suggestions. But the result was the same as before. (...) I didn't try yet. (...) I am able to use brickos under command prompt as well (...) (19 years ago, 31-Oct-05, to lugnet.robotics.rcx.legos)
 
  Re: swan question
 
(...) The help file should explain when you can use the MTR_A constant versus when you can use the OUT_A constant. It will tell you that MTR can be used with the MotorPowerXXX and SetMotorPowerXXX functions. Use the help system Find feature and it (...) (19 years ago, 30-Oct-05, to lugnet.robotics.rcx)
 
  swan question
 
Hi I'm experimenting with the Swan firmware but I have a puzzle. Is the constant OUT_A a direct equivalent to MTR_A as replacing OUT_A with MTR_A doesnt seem to work.I've used SetMotorPower128(MTR_A,50) to set motor speed. The command that doesn't (...) (19 years ago, 29-Oct-05, to lugnet.robotics.rcx)
 
  Re: compiling problem
 
(...) I'm glad that your problem was so quickly resolved. Isn't LUGNET great? In the future, if you have problems compiling NQC code you might want to post the exact error text generated by the compiler. If you use BricxCC to run NQC the full error (...) (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)
 
  Re: compiling problem
 
thanks for the advice rob, it compiled successfully (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)
 
  Re: compiling problem
 
(...) thanks for replying Kevin, a) i did not know there were compile options, how do i change them? b) i am getting parse errors on the close brackets just before ELSE and the third-last bracket thanks (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)
 
  Re: compiling problem
 
You are missing semicolons after the: Wait(turn_time) lines (both) And a code suggestion, instead of: task drive() { while(true) { OnFwd(OUT_A); } } make it: task drive() { OnFwd(OUT_A); while(true) { } } as the motor stays OnFwd until turned off. (...) (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)
 
  Re: compiling problem
 
Hi Bennet, Before we can help, we need a bit more information: a) What NQC compile options are you using? b) What syntax errors are you getting? Kev (...) <snip> (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)
 
  compiling problem
 
could someone please tell me what is wrong with this program? i am new at nqc and can not seem to find a way to compile it. the program is for a front-wheel-drive tricycle similar to Michael Gasperi's version of a "grey walter turtle" #define (...) (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

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