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 / *2629 (-20)
  USB Tower support for linux
 
Hi all, Does anybody know why legoUSB effort is inactive since 09 January of 2002.I have a RCX2.0 brick and I would like to try with the legos. I'm not interested in any MS Windows host development platform solution while I find linux alternatives (...) (22 years ago, 12-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: seting up legos 0.2.6
 
Scott, I only downloaded the ones listed and got it running for the most part. I did come across a few errors which seemed to be easily solved by downloading one or two packages other packages. But I am not sure if it was just user error as compared (...) (22 years ago, 11-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: seting up legos 0.2.6
 
(...) Full setup of cygwin = very large You certainly need not get the XFree86 and texmf packages unless you are interested. Max. (22 years ago, 11-Jun-02, to lugnet.robotics.rcx.legos)
 
  seting up legos 0.2.6
 
when installing cygwin is it best to download all the components or just the ones listed. scott (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: RCX schematic
 
(...) (URL) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  RCX schematic
 
Hey, Does anyone know where to find a schematic of the RCX, or at least know what output ports map to the sensors and motors? Thanks -Brent Talley (22 years ago, 6-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: Powered off, but still on?
 
(...) Funny, I just posted an article here about something similar. I started using LegOS a few days ago, and had the following problem a few times: after a power off period (of several hours) the power on did not produce any visible effect, and the (...) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  LegOS shorting the batteries?
 
Hi, (I'm new to Mindstorms and new to LegOS so excuse me if this is a stupid/obvious question.) I'm using LegOS 0.2.6 on w2k. I built a simple rover robot, and a program to control it (2 touch sensors, a ligth sensor, 2 motors) in C, and upload it (...) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: problem using emulegos
 
First off what OS are your running on? I do all emuLegOS development under Linux (Mandrake 8.1, not that it should matter), so if you are on any other platform you may run into issues. Of course emuLegOS should work on just about any Unix as long as (...) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  **** legOS new name poll starts now ****
 
Let us start the "new legOS name project". The procedure is the following: 1) send your name proposals (10.06. - 22.06.) Please mail me your name ideas. Do this with a personal e-mail to: legOS-namepoll@gmx.de The subject line should read (...) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  Powered off, but still on?
 
Recently, I went to use a couple RCXs that were loaded with LegOS. These two had both been used previously (about 1 to 2 weeks ago) but should have both had plenty of battery life remaining. I found that they both had drained the batteries (...) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  Here I go...
 
Well, I've just volunteered to give a presentation on LegOS at Brickfest 2002. I don't think I'm the most qualified person to present LegOS, but I am willing. And that seems to be the only real requirement! First, I'm a programmer (VB), and I've (...) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  problem using emulegos
 
hi all, im having problem using emulegos 1.2.5.0 with legOS 0.2.4 i have used legOS 0.2.4 for over 1 year now withouth any problems (including lnp), but for some reason when i type make in ~/hovedfag/emulegos/...ples/rover i get: makefile:8: (...) (22 years ago, 10-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: bug in setting lnp host address?
 
And, you'll probably hate my reply... "Just because you can do something, doesn't mean you should." The very idea of a discontinuous array of bits representing a network address in something as rudimentary as LNP makes my hair stand on end. The idea (...) (22 years ago, 5-Jun-02, to lugnet.robotics.rcx.legos)
 
  NQC functions in C???
 
Hello all I am looking for C code for legos, to do the same as the below in NQC psksvp SetSerialComm(SERIAL...MM_76KHZ); SetSerialPacket(SERI..._DEFAULT); // Set the first unit two message bytes and send them SetSerialData(0,MANA...0x10+em1); (...) (22 years ago, 5-Jun-02, to lugnet.robotics.rcx.legos)
 
  Thread class
 
// Thread Class for Legos // By Pongsak Suvanpong // psksvp@ccs.neu.edu // use it anyway you'd like as long as this comment is here #ifndef __THREAD_CLASS___ #define __THREAD_CLASS___ #include <unistd.h> #include <sys/dsensor.h> #include (...) (22 years ago, 5-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: bug in setting lnp host address?
 
you'll probably hate me for being a nitpicker.... (...) technically, you should not do any bitshifting at all. There is always the odd case when someone decides to be clever and have a hostmask with interleaved zeros. for example, a hostmask of (...) (22 years ago, 5-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: bug in setting lnp host address?
 
You are correct in stating that I shouldn't have restricted you to 16 nodes X 16 ports. I did however, want to normalize the host address in the visible API and user interfaces to be a small 0..N number instead of a random hex byte value, properly (...) (22 years ago, 4-Jun-02, to lugnet.robotics.rcx.legos)
 
  bug in setting lnp host address?
 
include/lnp/lnp.h (from the cvs repository) 114: file://! set new LNP host address 115: extern inline void lnp_set_hostaddr(unsigned char host) 116: { 117: lnp_hostaddr = ((host << 4) & CONF_LNP_HOSTMASK); 118: } Why is host bitshifted by 4? This (...) (22 years ago, 4-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: help with setting up legOS 0.2.6 on Windows XP
 
Scott, I suggest you start by following the instructions by Paolo Masetti found at (URL) He has written a pretty thorough set of instructions that should get you started. I do suggest that you read it over once BEFORE starting so you don't miss (...) (22 years ago, 2-Jun-02, 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