To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.roboticsOpen lugnet.robotics in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / 12916 (-20)
  Re: Is Robotics Discovery Set good?
 
(...) You can do that with the Scout. (Note: Micro-Scout and Scout are NOT the same) The scout comes with some nice stuff. But to use the full power of the Scout you're going to need a transmitter for the PC. Lego or Ebay should have them. The (...) (25 years ago, 26-Oct-00, to lugnet.robotics, lugnet.loc.ca.on)
 
  NT
 
Does the RCX cd come with an NT driver? I have a friend that is interested. Thanks, JIm (25 years ago, 26-Oct-00, to lugnet.robotics)
 
  Re: Is Robotics Discovery Set good?
 
(...) come as (...) I think the Robot Invntion system is too much money. Since i'm gettng the Cyber Strikers set, a $60 dinosaur book, and perhaps other things for Christmas too, I don't think I'd be allowed to do that. And I don't really like (...) (25 years ago, 25-Oct-00, to lugnet.robotics, lugnet.loc.ca.on)
 
  Re: single motor pneumatic pump and switch
 
(...) The arm designs in the Mars Expansion pack are great for that. They have/had pics on the web site that shows it picking up and dropping a pop can... Dean -- Coin-Op's For Sale!: (URL) Lego Workshop: (URL) Lego Club: (URL) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  Re: LEGO 2001
 
(...) I have bricks numbered 026985, 131860 &155226. All 1.0's. So I don't think the first number is a control number. I have a friend that has an 008xxx brick. He picked his up the same week as me so there was no relations to the numbers and (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  Re: Is Robotics Discovery Set good?
 
(...) Brad, if you can, go for the RCX (RIS) It will be usable for MANY years to come as you grow. I have all three units and I can tell you that the RCX (RIS) is the best. There was another message group that discussed all this in detail. (URL) the (...) (25 years ago, 25-Oct-00, to lugnet.robotics, lugnet.loc.ca.on)
 
  Re: Floating Point Arithmetic (Re: NQC with C++ header file)
 
Jose- That's great! Remind me to mention that when I release the newest version of the Linux + Lego HOWTO, if you don't see it there. Luis (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  Re: Is Robotics Discovery Set good?
 
(...) The RDS is a really cool set. And if it is your first time programming then i think its the way to go. The only real drawbacks i see with the scout is it does not support the rotation sensor and it only has two inputs(that you can change (...) (25 years ago, 25-Oct-00, to lugnet.robotics, lugnet.loc.ca.on)
 
  Is Robotics Discovery Set good?
 
I got a catalog today from a science store in Toronto, and it has relativley low priced Mindstorms. There are Droid Developers for $105.00, and Robotics Discovery for $159.95. This is quite close to the American price, so I think it is a better (...) (25 years ago, 25-Oct-00, to lugnet.robotics, lugnet.loc.ca.on)
 
  Re: What is with the Technic Stormtrooper?
 
(...) Umm. I've been chopping the ball and 1/2 inch of cross axle off those useless arm pieces for a while. They make very handy spherical joints to connect parts at odd angles. You can also chop the other end including the first two technic holes (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  Re: single motor pneumatic pump and switch
 
Nice idea. I don't have pneumatics yet, but the same idea can be applied to different applications. For example, I want to build a arm with a grabber that first closes the "hand" then lifts the arm. I believe your idea using the differential will (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  RE: LEGO 2001
 
(...) Ahhhh, the lure of numbers :-) (...) Agreed. I know about a half dozen kids that have these sets, and most of them would rather watch TV! Don't forget that a lot of these kits are in schools. They are dumped on teachers that have little or no (...) (25 years ago, 25-Oct-00, to lugnet.robotics, lugnet.robotics.rcx.pbforth)  
 
  RE: NQC with C++ header file
 
Curiosity piqued, I took a look around Google and found (among others)..... (URL) haven't waded through the math manually yet, but this doesn't look too awful. Perhaps I am ignorantly naive. It sure would be neat to have sin and cos on demand. Jeff (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  RE: LEGO 2001
 
Jeffrey Hazen (11:58 AM 10.25.2000) wrote: >The scans are interesting, but I'm afraid there isn't much excitement >robotics-wise. > >An interesting note: The serial number on one of the RCX bricks in the >scans is 502273. The earliest serial number (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  RE: LEGO 2001
 
>Jeff wrote: > >That means (with some assumptions about completeness) Lego has banged out >over half a million of these yellow bricks.... Really? Even one tenth that number is still a sea of yellow bricks! So where is everybody? Why are there only (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  RE: LEGO 2001
 
The scans are interesting, but I'm afraid there isn't much excitement robotics-wise. An interesting note: The serial number on one of the RCX bricks in the scans is 502273. The earliest serial number I can find is in my RCX 1.0 Constructopedia: (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  Floating Point Arithmetic (Re: NQC with C++ header file)
 
Speaking of FP, leJOS supports floating point arithmetic, and it now has a java.lang.Math class with pow, sqrt, sin, cos, tan and atan. Brian Bagnall is working on atan2, asin, acos, etc. It's getting more and more complete. We're currently (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  RE: NQC with C++ header file
 
(...) Well, not exactly. I guess I should elaborate. These rations are commonly used for scaling results. Of course if you do the division in integer you get 3, but what if you had an intermediate result that was 32 bits long. That's how Forth (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  RE: NQC with C++ header file
 
Absolutely! You'd be amazed at what can be done with 16 bit integer arithmetic if you operate at some suitable scale factor, depending upon the requirements - x10, x100, x16, x256. It depends on the ease with which you can shift and/or divide. As (...) (25 years ago, 25-Oct-00, to lugnet.robotics)
 
  RE: NQC with C++ header file
 
(...) Bah! We don't need no stinkin floating point. Here are a few approximations to real and transcendental numbers that you can make by dividing signed integers - the error is gennerally less that 1 in 1,000,000 pi 355 /113 sqrt(2) 19601 / 13860 e (...) (25 years ago, 25-Oct-00, to lugnet.robotics)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

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