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 / *9974 (-10)
Subject: 
Re: Process Control with RCX
Newsgroups: 
lugnet.robotics.rcx
Date: 
Mon, 20 Feb 2017 16:15:09 GMT
Viewed: 
24709 times
  
Here is the twenty foot long process on the main RCX for the printer.
https://www.dropbox.com/s/ejpgar7sg9cw02c/BlockMainRCX.jpg?dl=0
I wanted to use sub routines and loop the process so the program could look
elegant but never got it to work. Here each color has it's own put and return.


Subject: 
Process Control with RCX
Newsgroups: 
lugnet.robotics.rcx
Date: 
Mon, 9 Jan 2017 04:25:54 GMT
Viewed: 
25475 times
  
I am back on the Lego wagon, making another painting machine. Looking forward to
creating the best practices program with your advising.


Subject: 
Re: Faster Firmware/Motor Control
Newsgroups: 
lugnet.robotics.rcx
Date: 
Thu, 19 Jul 2012 01:58:15 GMT
Viewed: 
25523 times
  
In lugnet.robotics.rcx, Iain Hendry wrote:

BrixCC doesn't recognize "wait1Msec", and when I try to download a program with
it, it just gives me an error.

That's kind of what I was getting at with the motor power stuff; I can tell the
RCX can handle more motor powers, but there doesn't appear to be a way to use
them in the program...

D'oh...

I'm posting this because I'm sure I'm not the only one who missed this:  I
didn't realize there's a drop-down when BricxCC starts up, to select "Swan"
instead of "RCX" when making the first handshake with the brick.

After doing that, it compiles no problem.  MotorSetPower128 doesn't seem to
work, though...

At any rate, WaitMS() is great!  Super-precision motor control, here I come!

http://www.youtube.com/watch?v=kZlBlbe2cu0

-Iain


Subject: 
Re: Faster Firmware/Motor Control
Newsgroups: 
lugnet.robotics.rcx
Date: 
Wed, 18 Jul 2012 10:37:47 GMT
Viewed: 
25508 times
  
In lugnet.robotics.rcx, Jetro de Chateau wrote:

I found this site:  http://www.elenafrancesco.org/old/lego/index.html

Thanks for the link!

(snip)

The documentation on this page
http://www.elenafrancesco.org/old/lego/Firmware%20Features.html mentions the
following:

"new wait1Msec opcode to perform program waits using one millisecond resolution"

Maybe that is what you are looking for.

BrixCC doesn't recognize "wait1Msec", and when I try to download a program with
it, it just gives me an error.

That's kind of what I was getting at with the motor power stuff; I can tell the
RCX can handle more motor powers, but there doesn't appear to be a way to use
them in the program...

-Iain


Subject: 
Re: Faster Firmware/Motor Control
Newsgroups: 
lugnet.robotics.rcx
Date: 
Wed, 18 Jul 2012 08:10:48 GMT
Viewed: 
25421 times
  
In lugnet.robotics.rcx, Iain Hendry wrote:

I found this site:  http://www.elenafrancesco.org/old/lego/index.html


Thanks for the link!

After downloading the 100x firmware, I can tell that it is a different firmware
(different clock, tone on button press is different, etc.) - however, it seems
like I just can't unlock this 1/1000 sec. timer issue.  Wait(1); still results
in a 1/100 second delay.

I found some reference to a "WaitMS" command in the NQC programming guide,
however, if I enter "WaitMS(1);" I get a "Error:  Undefined function 'WaitMS'"
whenever I try to compile.  BrixCC recognizes the WaitMS command (it turns blue
when I type it), so it must be valid...

I'm not a programmer.  I just want a 1/1000 wait :)

-Iain

The documentation on this page
http://www.elenafrancesco.org/old/lego/Firmware%20Features.html mentions the
following:

"new wait1Msec opcode to perform program waits using one millisecond resolution"

Maybe that is what you are looking for.


Subject: 
Re: Faster Firmware/Motor Control
Newsgroups: 
lugnet.robotics.rcx
Date: 
Wed, 18 Jul 2012 01:05:21 GMT
Viewed: 
25059 times
  
In lugnet.robotics.rcx, David Koudys wrote:

I have it and use it exclusively.  i'll mail you a copy when i get your e-mail
sddess

Hi Dave,

Thanks - I tried to send you a note, but your email bounced...

I found this site:  http://www.elenafrancesco.org/old/lego/index.html

After downloading the 100x firmware, I can tell that it is a different firmware
(different clock, tone on button press is different, etc.) - however, it seems
like I just can't unlock this 1/1000 sec. timer issue.  Wait(1); still results
in a 1/100 second delay.

I found some reference to a "WaitMS" command in the NQC programming guide,
however, if I enter "WaitMS(1);" I get a "Error:  Undefined function 'WaitMS'"
whenever I try to compile.  BrixCC recognizes the WaitMS command (it turns blue
when I type it), so it must be valid...

I'm not a programmer.  I just want a 1/1000 wait :)

-Iain


Subject: 
Re: Faster Firmware/Motor Control
Newsgroups: 
lugnet.robotics.rcx
Date: 
Tue, 17 Jul 2012 20:28:58 GMT
Viewed: 
24311 times
  
In lugnet.robotics.rcx, Iain Hendry wrote:
Hi all,

One of the common ways I like to control the speed of a gearmotor (in NQC) is by
introducing a loop, for example, like this:

while(true)
{
  OnFwd(motor);
  Wait(a);
  Off(motor);
  Wait(b);
}

I often do this as a motor approaches a setpoint (say an offset from a target
position as measured by a rotation sensor) or the like.  Variable a and b could
be defined somewhere else but usually are around 1/100 or 2/100 of a second.
Any more than that and the motion gets jittery.  I sometimes swap out Off for
Float, depending on the application (unloaded the motors tend to glide right
through the Float, however).

I seem to remember hearing someone (Dick Swan?) built some Firmware a while back
that ran much faster and allowed for 1/1000 second (millisecond) intervals for
the Wait command, instead of 1/100 (decisecond).  Any truth to that?

I have it and use it exclusively.  i'll mail you a copy when i get your e-mail
sddess


Take care,

Dave K


Obviously if I could cut down the time delay, the sawtooth of "On" to "Off" gets
a lot crisper and the whole thing would work a lot better.

Thanks in advance,

-Iain


Subject: 
Faster Firmware/Motor Control
Newsgroups: 
lugnet.robotics.rcx
Date: 
Tue, 17 Jul 2012 16:59:23 GMT
Viewed: 
24039 times
  
Hi all,

One of the common ways I like to control the speed of a gearmotor (in NQC) is by
introducing a loop, for example, like this:

while(true)
{
  OnFwd(motor);
  Wait(a);
  Off(motor);
  Wait(b);
}

I often do this as a motor approaches a setpoint (say an offset from a target
position as measured by a rotation sensor) or the like.  Variable a and b could
be defined somewhere else but usually are around 1/100 or 2/100 of a second.
Any more than that and the motion gets jittery.  I sometimes swap out Off for
Float, depending on the application (unloaded the motors tend to glide right
through the Float, however).

I seem to remember hearing someone (Dick Swan?) built some Firmware a while back
that ran much faster and allowed for 1/1000 second (millisecond) intervals for
the Wait command, instead of 1/100 (decisecond).  Any truth to that?

Obviously if I could cut down the time delay, the sawtooth of "On" to "Off" gets
a lot crisper and the whole thing would work a lot better.

Thanks in advance,

-Iain


Subject: 
Re: BrickOS Patches and Development
Newsgroups: 
lugnet.robotics.rcx.legos
Date: 
Thu, 17 May 2012 21:36:46 GMT
Viewed: 
29330 times
  
Matthew Sheets wrote:
The Bibo Patch Rollup Collection posted to SourceForge at
http://sourceforge.net/tracker/?func=detail&aid=2773502&group_id=58151&atid=486699
has been updated.

Excellent, Matthew. Many thanks for keeping the project alive and moving
forward.

I've uploaded a little patch with the edge counting (which I needed once
upon a time when I tried to build a plotter without any rotation sensors)
re-implemented in a more sensible way. Here:
https://sourceforge.net/tracker/?func=detail&aid=3527703&group_id=58151&atid=486699

I'm currently working on figuring out all the little quirks of the power
functions protocol (such as what happens with the toggle bit state for
commands where the toggle bit is ignored). Once I have it fully working,
I'll release a patch with power functions control based on Bob Kojima's
code but updated to match the latest PF specification.

Cheers,
//Carl


Subject: 
Re: NQC and RCXCC
Newsgroups: 
lugnet.robotics.rcx.nqc
Date: 
Wed, 1 Feb 2012 02:05:45 GMT
Viewed: 
27002 times
  
In lugnet.robotics.rcx.nqc, Ahui Herrera wrote:
<<snip>>
he,he,he...
I'm going to bring back a 12 year old thread.
I'm using Windows XP and cannot figure out how to set the NQC_OPTIONS=-Trcx2
option.  Any idea?

-Ahui

Hi Ahui,

You can set environment variables on XP by going to Control Panel / System,
click Advanced tab, and click "Environment Variables" near the bottom.

You can add it to either system variables (available to all users) or just for
the user you normally login with.

Add a new variable, name=NQC_OPTIONS, value=-Trcx2.

Hope this helps.

ROSCO

Thanks ROSCO

I did that and it does work when I am using the "command line" of NQC.
When I do either:

nqc -Trcx2 -d counter.nqc
or
nqc -d counter.nqc

However in BricxCC when I hit compile I get an error saying
Undefined function (SetUserDisplay)
???
-Ahui

Never mind I got it now!

It's a 2 step process.

1) Use the instructions you provided to set the "variable" in Windows XP.
!!!RESTART THE COMPUTER!!!! !!!RESTART THE COMPUTER!!!!

2) When you start BrixCC select RCX2 from the drop-down list.
DUH!!!!  =)
The simple things trip me up. ROFL!

Now off to dust the old mindstorm off as I found a non-LEGO use for it.
-AHui



Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  Brief | Compact

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