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 / *1524 (-20)
  Re: Motor Speeds
 
(...) into (...) port. Consider implement PWM (for Motor Control) with second HC11, why not implement DC motor Controller with Frequency Lock Loop to control motor position and regulate motor speed? Suggested Specification: M68HC11 PWM Output using (...) (28 years ago, 24-Feb-97, to lugnet.robotics.handyboard)
 
  Re: Motor Speeds
 
(...) Now this is starting to make sense. We use -100 to +100, but it does seem silly to have a resolution of 201. Much more logical that the routine converts to steps of lesser resolution, and 7 speeds certainly seem reasonable. (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  Re:
 
(...) Looking at lib_hb.c: void motor(int m, int speed) { if (speed>100) speed=100; if (speed<-100) speed=-100; if (speed >= 0) _set_motor(m, 0, (speed + 3) / 14); else _set_motor(m, 1, (-speed + 3) / 14); } Keith (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  Re: More Motor Speeds
 
(...) Either I'm confused or we're talking two different animals. Our pcode_hb.s19 that came with the Gleason Handyboard, allows variable motor speeds from motor(0,-100) to motor(0,100) with great and fine control. In our first test we converted (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  Re: More Motor Speeds
 
(...) You will have to rewrite the code in the interrupt functions. It isn't "hard" but it does require that you understand what IC is using the various timers for. The best documentation for that is the PCode itself. I don't believe you can use the (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  Re: More Motor Speeds
 
(...) ???? 7 speeds??? We use the IC that comes with the Gleason Associates Handyboard where motor(0,100) runs motor 0 full speed ahead motor(1,-33) runs motor 1 backwards at 1/3 speed where speeds vary from 1 to 100 in either direction. Can't you (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  (no subject)
 
I had considered doing -100 to 100 PWM in hardware. I even went so far as to draw up the schematics for it... Then I read the HC11 manual, and realized that instead of my "little" circuit, I could just use another HC11.. The internal timer/counters (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  Re: More Motor Speeds
 
it's harder than you might expect, b/c the PWM routine is 'hard-wired" into the pcode file. basically, you have to make the changes in pcode.asm, and reassemble the pcode_hb.s19 file. -fred In your message you said: (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  More Motor Speeds
 
I want to increase the resolution of the motor driver routines provided by Interactive C, so that there are more than 7 speeds. Using the method of generating PWM signals in the Mobile Robots Book, this seems easy. However looking at the primitive (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  Re: IR collision avoidance
 
(...) I'm sending this to other members of our robotics team because we JUST mastered wall-hugging IR this week. They may have other things to add. (...) Here's the pseudo code: Start Any bumpers hit? YES - Execute the back up, turn 90 degrees left (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  motor voltages
 
Hello again, Thanks to all who responded to my query regarding motor chips on the Mini Board. Now that I have the more capable motor drivers installed, I want to lower the voltage that my motors see. They are getting straight 9V from the motor chips (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  Re: motor voltages
 
I (...) Use a couple power diodes in series with the motor power supply, _NOT_ the motor itself. You'll need pretty heafty diodes if you go this route. A typical Si diode drops between 0.6 and 0.7 volts when forward biased. String a few together and (...) (28 years ago, 23-Feb-97, to lugnet.robotics.handyboard)
 
  IR collision avoidance
 
Howdy, Is there anyone out there that can explain programming IC for IR collision avoidance. I have read the mobile robots book and everything in the IC manual I downloaded and the 6.270 hardware info but still haven't got a good grasp of the best (...) (28 years ago, 22-Feb-97, to lugnet.robotics.handyboard)
 
  Re: motor drivers
 
David, You can replace the L293 on your MiniBoard with the TI SN754410 with no adverse effects. The two chips are pin-for-pin compatible. - Prabal (...) (28 years ago, 22-Feb-97, to lugnet.robotics.handyboard)
 
  motor drivers
 
Hi all, I am running some motors from a Mini Board and I want to up the current output of the board. I have noticed that the motor drivers on the MB are the L293 chips just like the Handy Board. Now if the 1 Amp motor chips that many Handy Board (...) (28 years ago, 21-Feb-97, to lugnet.robotics.handyboard)
 
  SPI Routines in IC
 
Anybody have any routines or know of any published information for using the SPI with IC for: ...use with Dallas Semi's serial real time clock - DS1202 ...use with 12 Bit serial A/D - LT1298 ...use with Dallas semi's Thermomerter - DS1620 Thanks a (...) (28 years ago, 21-Feb-97, to lugnet.robotics.handyboard)
 
  Re: Digit outputs....
 
Rather than trying to figure out the hex for the bits, I use the IC binaray number format, "0b". I set the bits using a binary mask, for example, to set the MOSI pin high, I use: bit_set(0x1008, 0b00001000) then to set the MOSI pin low, I use: (...) (28 years ago, 20-Feb-97, to lugnet.robotics.handyboard)
 
  Digit outputs....
 
I've tried to program the digital outputs from the SPI header J6 on the HB with no success. I pump the values into the HB as per instruction form the FAQ note and measure the 4 outputs. No high/low, just some sort of oscillation. What could be my (...) (28 years ago, 20-Feb-97, to lugnet.robotics.handyboard)
 
  Re: Motors & handyboard
 
(...) This is also excellent advice. On one R/C car I had, I ended up having to simulate the signal input to the controller because the h-bridge was so screwy but it does save you from having to build your own. On a related note, Radio Shack sells (...) (28 years ago, 19-Feb-97, to lugnet.robotics.handyboard)
 
  Re: Motors & handyboard
 
(...) Why not use the H-bridge that is already on the bulldozer? If you work backwards throught the motor driver circuitry, or use the RF controller to send commands to the dozer and see what voltages change you can figure out where the inputs to (...) (28 years ago, 19-Feb-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