 | | Re: Communication between 2 Robots - Movement transmition
|
|
I did something simple in my book where each robot had an angle sensor, and could copy each other's 1D movement. Some grad students at Tufts did the same thing with 2 angle sensors on each robot and 2D movement. Both projects also then expanded to (...) (23 years ago, 27-Feb-02, to lugnet.robotics.rcx.java)
|
|
 | | Re: BricxCC release 3.3.3.8
|
|
(...) It looks like the "slowness on shutdown" that I was experiencing when I closed BricxCC while multiple editor windows were open was causing access violations on your machine. What was happening was the code explorer would kick off a thread to (...) (23 years ago, 26-Feb-02, to lugnet.robotics.rcx.nqc)
|
|
 | | Re: Java Mindstorms API
|
|
Hi Keith, (...) on the site I saw: To build an equivalent system for on-board ML programming of the RCX using the Lejos operating system Great project, finally there will be a decent programming language for the RCX ;-) Should better get going with (...) (23 years ago, 26-Feb-02, to lugnet.robotics.rcx.java, lugnet.robotics.rcx)
|
|
 | | Re: reliability of quad speed LNP
|
|
I have found that between a rather old PC and a RCX I cannot use quad speed transfer of data as the RCX cannot keep up. When a different (faster) PC and the same RCX I can use quad speed transfer. I guess it comes down to protocol timing. LNP does (...) (23 years ago, 26-Feb-02, to lugnet.robotics.rcx.legos)
|
|
 | | Re: BricxCC release 3.3.3.8
|
|
hi John, getting the latest video driver (Geforce 2MX, driver DetonatorXP v23.11) didn't help :-(, but .... you're new version 3.3.3.9 DID help :-) So thanks again ! I can't see any relevant changes from your "enhancements" list, but maybe you (...) (23 years ago, 26-Feb-02, to lugnet.robotics.rcx.nqc)
|
|
 | | reliability of quad speed LNP
|
|
Does anyone have any data on the reliability of quad speed LNP? I've been using quad speed LNP for downloading programs to my 1.0 RCX for some time, and never had a problem. Recently I'd bowored a friends 1.0 RCX so that my bot could have two RCXs. (...) (23 years ago, 25-Feb-02, to lugnet.robotics.rcx.legos)
|
|
 | | BricxCC release 3.3.3.9
|
|
I've released another version of BricxCC (3.3.3.9). In this release: 1) Fixes to Cybermaster-specific items on the Watch window and graph 2) Fixed slow shutdown caused by Code Explorer 3) Added hints on Code Explorer preferences dialog to help (...) (23 years ago, 25-Feb-02, to lugnet.robotics.rcx.nqc)
|
|
 | | Re: windows ce
|
|
"John Barnes" <barnes@sensors.com> wrote in message news:Gs3Dus.6z2@lugnet.com... (...) sent (...) he (...) him (...) bricks. (...) can (...) just thinking about it, one should be able to adapt the circuit to take a smaller battery add-on to use (...) (23 years ago, 25-Feb-02, to lugnet.robotics, lugnet.robotics.palm)
|
|
 | | Re: problems with communications
|
|
(...) Dear oh dear. Probably because I'm being dense. (...) And the obvious answer - if it's software handshaking I should be able to see it with software. Having written a program to feed the serial port arbitary bytes and capture and log arbitary (...) (23 years ago, 25-Feb-02, to lugnet.robotics.rcx.pbforth)
|
|
 | | Re: VC limitations - Is there an alternative?
|
|
From Lego Studios, I have been able to access other cameras by editing a line in Registry HKEY_CURRENT_USER\Software\LEGO Media\LEGO Studios\Capture Video capture driver name LEGO Cam If you change this value to the name of your alternative cam (...) (23 years ago, 25-Feb-02, to lugnet.robotics)
|
|
 | | problems with communications
|
|
I'm trying to get started with pbforth, but not finding it easy. While I know no forth, I'm happy with RPN (long-time HP calculator user) and stacks, dictionaries and defining words (ex-Postscript programmer). What I'm struggling with is getting as (...) (23 years ago, 25-Feb-02, to lugnet.robotics.rcx.pbforth)
|
|
 | | Re: Echoing printf to terminal
|
|
this is from george musser. enjoy. - fred My advanced library of routines ((URL) includes a kludgy way to echo printf() to the IC command line. Look at the function iprintf() in the file advlib_utility.c. The routine sets up a character pointer to (...) (23 years ago, 25-Feb-02, to lugnet.robotics.handyboard)
|
|
 | | Re: Echoing printf to terminal
|
|
i don't know this offhand. you'd have to assemble the pcode source and look and see where it ends up. it's a ring buffer tho' so it might be a little tricky. you'd be better off patching the lcd print interrupt routine (it unspools one char per ms (...) (23 years ago, 25-Feb-02, to lugnet.robotics.handyboard)
|
|
 | | Re: Echoing printf to terminal
|
|
this is non-trivial. The -loopback option isn't what you think it is; it's a flag telling the downloader that the low-level serial ckt has a hardware echo. it's relevant to an earlier 6811 design (the mini board), not the HB design. this would (...) (23 years ago, 25-Feb-02, to lugnet.robotics.handyboard)
|
|
 | | Re: Interactive C
|
|
You have to coerce the int to a float, e.g: int i= 7; float j= 3.; float result; result = j * (float)i; The above should work. Please let me know if not. Fred (...) (23 years ago, 25-Feb-02, to lugnet.robotics.handyboard)
|
|
 | | Echoing printf to terminal
|
|
Hi folks, We have been looking for a way to echo the printf()s on LCD to the IC terminal on host computer (using 2.86 - freeware). IC has a -loopback option, but apparently that only works for HB rev 1.5 and earlier. Is there a way to do this with (...) (23 years ago, 25-Feb-02, to lugnet.robotics.handyboard)
|
|
 | | Java Mindstorms API
|
|
Hi all, I'm a 4th year computer science student and have just developed an add on to the RCXPort API for mindstorms control for the purpose of using with standard ML as part of my 4th year project. The website is www.dcs.ed.ac.uk/~kv...oject.html (...) (23 years ago, 25-Feb-02, to lugnet.robotics.rcx.java, lugnet.robotics.rcx)
|
|
 | | Interactive C
|
|
(Perhaps this isn't the right place to ask questions about I.C. but it is related to the handy board so I will continue) I am trying to write a program that uses the lego sensors and multiplies them by constants that are floats. The expansion board (...) (23 years ago, 25-Feb-02, to lugnet.robotics.handyboard)
|
|
 | | Re: windows ce
|
|
(...) it's; (URL) (23 years ago, 25-Feb-02, to lugnet.robotics, lugnet.robotics.palm)
|
|
 | | come to the First Annual New England Botfest, Saturday, March 9th!
|
|
All, We're looking for people to bring robots, robotic gadgets, or any other sort of robotic invention/art/contra...n/whatever to our first annual New England Botfest. The BotFest is on Saturday March 9, 2002, at the UMass Lowell campus in Lowell, (...) (23 years ago, 25-Feb-02, to lugnet.robotics.handyboard)
|