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 / *6959 (-20)
  Re: IRPD
 
Kalyan, Both Marvin Green and Dennis Clark have IRPD kits (fairly cheap) that IMO are much better than the Lynxmotion unit (I have all three). (2 URLs) you get either Marvin's or Dennis' IRPD kit, I can send you PIC source code for either board that (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: IRPD
 
(...) I have a PIC based design on my web page: (URL) that will work with any micro. I have parts description and PIC source as well as a crude board layout graphic. This one is fully automated with a left/right/both sensing capability. I also have (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: IRPD
 
If you check (URL) you will find IRPD's with very narrow detection zones. Those are good for many applications. If you need one with wide coverage just for obstacle avoidance, check (URL) One or the other of those sites should work for you. Gary (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: HandyBoard Charging
 
no, to do the battery run-down test, you must not have it plugged in! otherwise you'd just be powering it from the adapter, and you'd never run out of juice. so, the steps are: 1. bootload your HB with pcode_hb.s19. you should see the Interactive C (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: HandyBoard Charging
 
Okay, I'll try it. Do I need to have the DC adapter plugged in to the (...) th (...) the (...) bei (...) pow (...) off (...) a (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: HandyBoard Charging
 
Danny, Since you imply that your battery does not take any charge at all, it sounds to me as though your problem is: (1) fuse F1 is open, or (2) a cell in your battery pack is open, or (3) one of the battery wires or its associated PCB land is open. (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  IRPD
 
Hi, Can somebody point me some web pages for an Infrared Proximity Detector/sensor (IRPD) for the HandyBoard? Thanks Kalyan Kalyan Mulampaka Software Engineer e Information Services ___...___ Ph#: (770) 698 4436 (O) (678) 320 0783 (R) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: HandyBoard Charging
 
ok, you have the stock adapter. like i said, sometimes the batt does get fully charged and then not enough current flows in trickle-charge to light the LED. but that's normal, so it doesn't sound like there is actually a problem. a simple way to (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: HandyBoard Charging
 
Well I bought an assembled board from Gleason Research and I've been using the DC adapter that came with the board. The charging leds light up only when the Handyboard on? Is there something special I need to do to run the board on batteries? Is (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: HandyBoard Charging
 
do you have the recommended 12v, 500 ma DC adapter? if not, that explains it. if so, sometimes when the batt is fully charged, you don't get much in trickle charge mode and the light is off. but usually you should see the light being lit dimly. are (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  HandyBoard Charging
 
In the Handyboard manual it says when charging in trickle mode you should turn the Handyboard off, however when I do try and turn the Handyboard off the charge light on the serial/charger board goes off? Is the board still being charged or is there (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  Re: evaluate inverse cosine, sine in IC
 
(...) The most efficient way to do it is to use Taylor Series approximations of the functions. Decide how much precision you need, and then write functions that evaluate the first few terms in the appropriate series. Usually, a series will converge (...) (25 years ago, 16-Nov-99, to lugnet.robotics.handyboard)
 
  evaluate inverse cosine, sine in IC
 
Hi, is there a way to evaluate inverse cosine and sine using IC? Thx (25 years ago, 15-Nov-99, to lugnet.robotics.handyboard)
 
  Re: Video Transmitters
 
(...) I't not that cheap, but if you want small size and low power consumption check out this 900 Mhz transmitter/receiver pair from supercircuits: (2 URLs) here's a very small camera with transmitter built in: (URL) if you want to receive on a (...) (25 years ago, 15-Nov-99, to lugnet.robotics.handyboard)
 
  Re: Video Transmitters from JDR
 
[glashan] spake unto the ether: (...) From the fancy TV receiver you describe, I'd say you wouldn't have to do anything but select NTSC mode. The kit is supposed to transmit over the range of VHF channels 3-7, but my specific kit only does 3-5 (why (...) (25 years ago, 14-Nov-99, to lugnet.robotics.handyboard)
 
  Re: Video Transmitters
 
NetMarket (www.netmarket.com) carries a transmit/receive pair made by Recoton. It's intended to transmit audio/video around the house. Ours includes a gizmo to extend your remote control capabilities, and it cost about $120. Just the (...) (25 years ago, 14-Nov-99, to lugnet.robotics.handyboard)
 
  Re: mixing variable types in IC
 
[Ben Davis] spake unto the ether: (...) Hmm, I think you want c = ((float)(x))/((float)(y)); Otherwise, the division will be done first as integers, giving an integer quotient, which you're then turning into a float. *Rich* (25 years ago, 14-Nov-99, to lugnet.robotics.handyboard)
 
  mixing variable types in IC
 
Hi John- You can convert quantities from one data type to another (it's called "casting", I believe). The following computes the quantity x/y, then converts it to a float: ---...--- int x, y; float c; float divide ( int x, int y) { c = (float) (...) (25 years ago, 14-Nov-99, to lugnet.robotics.handyboard)
 
  mixing variable types in IC
 
Now that I got past my nested function problem I have discovered that IC does not like mixing variable types. For instance, this results in an error: int x, y; float c; float divide ( int x, int y) { c = (x/y); return c; } IC will not let me (...) (25 years ago, 14-Nov-99, to lugnet.robotics.handyboard)
 
  Re: Video Transmitters
 
[glashan] spake unto the ether: (...) JDR Microdevices ((URL) sells a $25 short-range VHF TV transmitter kit. It's all analog, so there is some drift with warmup and it needs a very stable power supply, but otherwise it works great. The observer (...) (25 years ago, 14-Nov-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