To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.handyboardOpen lugnet.robotics.handyboard in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / Handy Board / *6549 (-20)
  IR sensors
 
I have both a miniboard and a Handy board. I have recently purchased some Sharp 40mhz IR detectors to use with these boards. I have very little knowledge of electronics and don't know how to flash the IR LED at a rate that the detectors will need. (...) (25 years ago, 3-Aug-99, to lugnet.robotics.handyboard)
 
  EE RF question
 
Hi! If you have an RF Transmitter and Reciever with Antennas, can you detach the antennas and just connect a co-ax cable between them? I'm guessing this would reduce the noise and interferance to a minumum. Is this right? ---...--- ericson mar (...) (25 years ago, 3-Aug-99, to lugnet.robotics.handyboard)
 
  Brand New Gleason Research Handyboard For Sale
 
I've just bought a new handyboard, and realized that i'm way over my head trying to build a robot. All i've done so far is perform some software tests to ensure the the handy board & the expeansion board work. I've got one brand new Gleason Research (...) (25 years ago, 2-Aug-99, to lugnet.robotics.handyboard)
 
  Vision on HB
 
Anyone tried using a CCD camera vision system on the handy board ? If so how did you go about doing it , hardware , software, wise?Sample code would be great:) Thanx, Alex Stewart (25 years ago, 2-Aug-99, to lugnet.robotics.handyboard)
 
  IC code site
 
Update: Things have been really slow so far. I've added the two functions that I've gotten off the list to the archive. I'll be entering code fragments from "Mobile Robots" later in the week. If there are other books out there with IC or easily (...) (25 years ago, 2-Aug-99, to lugnet.robotics.handyboard)
 
  Any one have experence in robotic vision?
 
This really isnt a HB question but >>>> Have been reading a few vision books , thay all have formaulas and examples etc but none of them help you with actual code , my actual question is does any one have some example vision code in C or anything? (25 years ago, 2-Aug-99, to lugnet.robotics.handyboard)
 
  Noise on the handy board
 
Fred and handyboard experts, I have assembled two handyboards and I am now helping 15 other people build theirs at San Jose State University. I found a problem on the first two I build that I belive causes the Sharp GP2D02 not to work. The school (...) (25 years ago, 31-Jul-99, to lugnet.robotics.handyboard)
 
  Re: Millisecond timing
 
(...) See the Polaroid sonar code (from the HB web site) for an example of how to measure timing signals on the TIC3 channel. You initialize with: bit_set( 0x1009, 0x30 ); /* ddrd */ bit_set( 0x1021, 1 ); /* at tctl2, */ bit_clear( 0x1021, 2 ); /* (...) (25 years ago, 30-Jul-99, to lugnet.robotics.handyboard)
 
  Re: Millisecond timing
 
The clock speed on the Handy Board runs at 2 Mhz, which is plenty fast enough for most things IF you run the right code. IC, used in its C implementation is too slow to catch anything at 1 ms reliably. However, there are a few simple work arounds. (...) (25 years ago, 30-Jul-99, to lugnet.robotics.handyboard)
 
  Millisecond timing
 
I recently bought a Handy Board to use in acquiring time measurements varying by one millisecond. The Handy Board has a clock speed of 2kHz, therefore it should be able to measure down to one half millisecond. What I have found however is that the (...) (25 years ago, 30-Jul-99, to lugnet.robotics.handyboard)
 
  Can't bootstrap! & IR reflective sensors help
 
After assembling my own handyboard (ugh), and everything was (supposedly) solded OK, i tried to put the handyboard in bootstrap mode. But i get no results... i tested the stop button and it works fine (i compared with the OTHER handyboard i had)... (...) (25 years ago, 30-Jul-99, to lugnet.robotics.handyboard)
 
  Re: Reading Serial Port
 
David Boosalis <dboosalis@mail.arc.nasa.gov> moved upon the face of the 'Net and spake thusly: (...) "Use The Source, Luke". Check the source code of the downloader in the Unix port of Interactive C. (...) I think you want 9600, not 921kbaud (unless (...) (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  Re: Dead handyboard?
 
(...) Antistatic bags are conductive, right? You might have shorted the power to the ground via the bag itself, thereby killing your battery. Once a NiCad cell shorts, then it will can a large amount of current from a charger, possibly killing off a (...) (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  Dead handyboard?
 
My hb was working fine, I took it on a trip in an antistatic bag. When I took it out of the bag, the battery was completely drained. But as soon as I started to charge it, one of the resistors burned up. So I tried charging it via the interface (...) (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  Sharp GP2D12
 
Hi all, I want to use the GP2D12 distance measuring sensor with my handyboard. Does anybody know the pinout details for the three pins? Thanks, Thomas (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  Sharp GP2D12
 
(25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  Re: R: Reading Serial Port
 
also remember that at 9600 baud or higher, you may not see the flashing of the serial LEDs. try setting the baud rate to 300 or even 110 if you're doing visual-flash debugging. fred In your message you said: (...) (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  Re: Reading Serial Port
 
It isn't hanging, it's a blocking read until it recieves some specified number of characters. You can use a non blocking read by specifying O_NONBLOCK, in which case read() will return immediately. The Linux serial programming HOWTO is very good, I (...) (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  R: Reading Serial Port
 
You can try Java comm API, under linux too. (If you want to use java ... :-) Stefano ---...--- | Da: David Boosalis <dboosalis@mail.arc.nasa.gov> | A: handyboard mailist <handyboard@media.mit.edu> | Oggetto: Reading Serial Port | Data: 29 July 1999 (...) (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)
 
  Reading Serial Port
 
This is not really a HB question, but I am hoping someone here has experience in it anyway. My question is in how do you read the Serial port under Linux. The Linux HOWTO's give an example, which I show below. What happens is that it hangs on the (...) (25 years ago, 29-Jul-99, to lugnet.robotics.handyboard)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

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