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 / *1954 (-20)
  Re: line following
 
(...) As have I, so when I wanted to build a line-follower, I used a couple of IR detectors in concert with a pair of IR emitting diodes. They were arranged on the nose of the robot as follows: 1 2 3 4 \ | | / Where 1&4 are the IR emitters and 2&3 (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  variables
 
Can you access variables declared in a binary progam from a different binay program? i.e. can "speeda" (pcode.asm) be accessed by xxxxxx.asm? Do you have to know the actual address where "speeda" is stored or can you just use "speeda" inside (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: Battery life
 
To avoid that battery problem, I have mine plugged in about 20 hrs/day and the other 4 hrs the serial interface is plugged in. I've had problems in the past where I've presented a robot that couldn't work because the batteries died & there were no (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: line following
 
(...) <snip> (...) <snip> In my rather limited experience with reflective photosensors, I've found that black on white is not always the best of choices -- the white can come up as different numbers depending on how clean/dirty the floor is and the (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: Battery life
 
The best answer would be to take the mAH of the battery, say X=1500 mAH. Find out the current drawn by the RAM say I=5mA. Divide X by I and you get the number of hours of battery life. This is ofcourse assuming that you have a fully charged battery (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: Battery life
 
rabbit> 3600 since there are that many seconds in an hour. I myself rabbit> have left the handyboard off for periods of 4weeks or more rabbit> and still have had my memory. I just rattled the above off rabbit> the top of my head so, anyone, please (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: Battery life
 
Ive got a pretty crappy answer for you but its the best I can offer; check out how much current the RAM draws from a data sheet and calculate the power it uses (P = IV, where I=RAM current, and V=5v). Divide the mWHr your battery delivers by the (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: line following
 
(...) I did something like this in an early computer engineering course. The requirements are exactly the same ie. follow a black line. What Chris said is a good start but you should also consider the case when the turn is too sharp; In this case (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: Battery life
 
Same question here. I left mine turned off for one night and the next day the battery had almost completely run down! jm (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Battery life
 
I think I already posted this question some time ago but never got an answer. Is it normal to have the HB run out of battery even when is not being used ?? I know the battery is always working to keep the RAM from erasing, but I'm wondering how long (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: Hardware Problems
 
(...) All I can add is that is what mine does, and it seemed to break when I hooked up a 'normal' 12V battery charger, which is opposite polarity to the HB charger requirements. According to the diodes in the diagram, this shouldn't be a problem, (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: line following
 
(...) This one's pretty easy. Two IR detector/emitter pairs along the bottom, midline of the robot (say, about 1cm or less off the floor). The algorithm is to keep both detectors over the black tape (i.e. a low reflectance reading); if the right one (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Re: line following
 
(...) He have (had?) some robots here at work that were used in the production areas, and they followed a line on the floor. I've not studied them carefully, but I think they work something like this: Two reflective photosensors are aimed at the (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  Hardware Problems
 
Hello, I'm having trouble getting my Rev 1.2 Handy Board up and running. It did work once and then the following symptoms: I start the mac based down loader, which download the bootstrap code fine. Both charger board and the handy board's serial (...) (27 years ago, 16-Apr-97, to lugnet.robotics.handyboard)
 
  store variables in RAM after reset
 
Hi guys, I'm new to the interactive C. Does anyone know how to declare an array of variables which can be changed by the program and stored in the RAM and their values stay the same even after reset? Second, I'm aware of something called the (...) (27 years ago, 15-Apr-97, to lugnet.robotics.handyboard)
 
  Expansion interface.
 
I have a question about the expansion interface. If it is decided upon the 1Amp 9V transistors...would it be a problem for the HB's 1Amp Voltage regulator or the fuse? (27 years ago, 15-Apr-97, to lugnet.robotics.handyboard)
 
  line following
 
Hey all, I'm looking for some ideas on sensors and algorithms for a line following robot (black tape on white floor). If any of you have had some luck at this or know where I can find some info please let me know. Thanks Rajesh (27 years ago, 15-Apr-97, to lugnet.robotics.handyboard)
 
  Re: motor routines in lib_hb.c
 
If I'm not mistaken, (someone please corect) those speeds represent the actual shape of the waveform. Let's list some details. 1. Each bit 0 or 1 represents 0V or 9.6V. (or whatever external source) 2. Each bit represents the above voltage for a (...) (27 years ago, 15-Apr-97, to lugnet.robotics.handyboard)
 
  Re: motor routines in lib_hb.c
 
(...) Think of them as repeating binary waveforms (they are clocked out the 'enable' pin of the motor chip at 1Khz) so on an oscilloscope speed 2 (third entry) would appear.. time -> 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 (in mS) Vmotor : +--+ +--+ (...) (27 years ago, 15-Apr-97, to lugnet.robotics.handyboard)
 
  Re: motor routines in lib_hb.c
 
(...) These 8 bit masks are the most symmetrical way to to organize speeds of 0 through 7/7. You could rewrite the code to accept a byte and use that as the mask, but unless you think it would save space, it's a waste of time. The miniboard routines (...) (27 years ago, 14-Apr-97, 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