To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.rcx.legosOpen lugnet.robotics.rcx.legos in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / RCX / legOS / *3753 (-20)
  table brickos light to percent
 
i there a table or converter from brickos light readings to light percentage ( and vice versa ) Thomas (20 years ago, 27-May-04, to lugnet.robotics.rcx.legos)
 
  Re: issues with 6-legs bot
 
(...) Your approach is pretty common. As it turns out, you can (should) remove the wait time, also. Many people think they need to tell the robot how long to turn, or how long to go forward. It's like driving down the road in a car. You don't look (...) (20 years ago, 20-May-04, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx.robolab)
 
  RE: issues with 6-legs bot
 
Hi Steve, Thank you very much for your put! (...) Can't take the credit. I got the idea from the Sato book, instead of 4 legs, I thought the 6 legs are much more stable. (...) That's pretty much what I did initially, except I used to put in "wait" (...) (20 years ago, 20-May-04, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx.robolab)
 
  Re: issues with 6-legs bot
 
What if you were to make a small platform for the light sensors in between the legs that rest on the ground and has a slide somewhere so when the robot moves up or down it stays touching the ground. ----- Original Message ----- From: "Elizabeth (...) (20 years ago, 20-May-04, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx.robolab)
 
  How to increase address range in brickos ?
 
Does anyone know a way to increase the address range in brickos beyond 0 through 15 ? When I cycle through the address range via View + Prgm it stops at 0xF0. The port is always set at zero. What if I modify the port value ? Or does that affect (...) (20 years ago, 19-May-04, to lugnet.robotics.rcx.legos)
 
  Re: issues with 6-legs bot
 
(...) Am I correct in thinking the two front, and two back legs don't move, only the middle two? That's a nice, simple design. And you have two light sensors, and your goal is to keep them on either side of the line, right? (...) If I understand (...) (20 years ago, 19-May-04, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx.robolab)
 
  issues with 6-legs bot
 
Hi, I built this 6-legs bug for a black line tracking test. The construction: It is a walker with 2 motors, one for 3-left-legs, another one for the right. Middle leg on each side is connected on an 8-tooth gear and attach an 40-tooth gear. This (...) (20 years ago, 19-May-04, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx.robolab)
 
  Re: Problem with lego pneumatic parts
 
Very helpful info... thanks all for the info. "Mike" <kbg17[nospam]@[nosp...tzero.net> wrote in message news:Hxqu55.23Az@lugnet.com... (...) cylinder (...) does (...) they (...) They (...) T, one (...) by (...) I.D. (...) sold (...) just (...) (20 years ago, 19-May-04, to lugnet.robotics.rcx.nqc, lugnet.robotics.rcx.legos)
 
  RE: problems with creating arrays of larger sizes
 
(...) Need to understand the difference how array and pointers are being allocated ... And char is usually one or two bytes, depending on type of procesor; and pointer is usually 4 bytes, unless you go to 64-bit processor ... If you wish to utilize (...) (20 years ago, 18-May-04, to lugnet.robotics.rcx.legos)
 
  Re: problems with creating arrays of larger sizes
 
(...) This won't work for sure. If you look into the kernel sources, DEFAULT_STACK_SIZE gives the value for every user program's stack. Actually, this is 1KByte, if I remeber it right. Your character array will be allocated on the stack and so you (...) (20 years ago, 17-May-04, to lugnet.robotics.rcx.legos)
 
  Re: problems with creating arrays of larger sizes
 
(...) Hi Andreas I would suggest, that you instanciate your variable as global, and not within the main() function. Or declare it as static so that the compiler does not try to instanciate it on the stack. The problem could be due to a stack (...) (20 years ago, 17-May-04, to lugnet.robotics.rcx.legos)
 
  Re: problems with creating arrays of larger sizes
 
OK, here is my code. #include <dmotor.h> #include <dsensor.h> #include <unistd.h> #include <dbutton.h> #include <conio.h> #include <stdio.h> #define n 1000 void verzoegerung(unsigned long zeit) { while(zeit--); } int main() { int i; char c[n]; (...) (20 years ago, 17-May-04, to lugnet.robotics.rcx.legos)
 
  Re: Problem with lego pneumatic parts
 
(...) Presumably that was Ben Fleskes... (see (URL) Interesting....they make custom plastic parts. (...) I have been very pleased with the wheels Ben commissioned and it's in part a testimony to the molder he chose (and in part to his engineering (...) (20 years ago, 15-May-04, to lugnet.robotics.rcx.nqc, lugnet.robotics.rcx.legos, lugnet.trains)
 
  multiple source files?
 
How do I compile multiple .C source files to one .lx file? as far as I know, the default makefile doesn't support that. Thomas (20 years ago, 15-May-04, to lugnet.robotics.rcx.legos)
 
  Re: Problem with lego pneumatic parts
 
(...) I bought some T-connectors that work great from a local RC hobby store. They were fuel hose fittings for RC planes or cars. The package contained one T, one penbladder T, and two 90 degree fittings. It cost US$2.95. They are made by Fourmost (...) (20 years ago, 15-May-04, to lugnet.robotics.rcx.nqc, lugnet.robotics.rcx.legos)
 
  Re: problems with creating arrays of larger sizes
 
(...) > (...) Who knows. Unless you show your code... Regards, Michael (20 years ago, 14-May-04, to lugnet.robotics.rcx.legos)
 
  problems with creating arrays of larger sizes
 
Hello, at the moment I try to get experience with the memory of the RCX. I've read somewhere that the brickOS firmware is about 8kB big. I loaded a program with a size of 2 kb down to the RCX. With the help of the program I created an array of the (...) (20 years ago, 14-May-04, to lugnet.robotics.rcx.legos)
 
  Use of LNP under Windows
 
Hello I'd like to send sensor values from the RCX to my PC. In this forum I've read that I can do this with the help of LNPD. The OS on my PC is Win 2000, I'm using Cygwin to compile my BrickOS programs, my IR-Tower is connected to an USB port. Is (...) (20 years ago, 12-May-04, to lugnet.robotics.rcx.legos)
 
  Re: BrickOs 0.2.6.10.6 vs 0.2.6.09.newConf2
 
Patrik, It could be a memory leak, or maybe a memory fragmentation issue. If the memory manager cannot find a single block of memory large enough for the request it will fail. You may be able to tell by displaying the available memory on the lcd, (...) (20 years ago, 10-May-04, to lugnet.robotics.rcx.legos)
 
  Re: LNPD and Cygwin
 
(...) Hi, I want to communicate with my lnpd daemon running in linux machine from my windows/cygwin machine. Do you have your winliblnp implementation for cygwin? Thanks, Mohammed (20 years ago, 10-May-04, 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