Telescope drive motors that don't...


Closed Thread
Page 1 of 2 12 LastLast
Results 1 to 40 of 69
  1. #1
    Join Date
    Mar 2008
    Posts
    17

    Default Telescope drive motors that don't...

    Hi,

    I'm not sure if I'm in the right place, so apologies in advance if this is not the correct forum, but I'm not sure exactly what I'm having trouble with! I have a telescope motor drive that I want to drive at a slightly different speed from the commercial controller.

    This site, http://telescope.marford.me.uk/Proje...controller.htm , gives a very simple circuit, and some associated code. The circuit just uses a PIC16F627 to send timed pulses to an L293D, which is then meant to drive the 2-coil stepper.

    The code worked on MPLAM SiM after a minor re-jig, and the circuit does indeed turn the motor round. But with no torque. The commercial hand controller has no problems producing oodles of power, but my puny pulses produce a maximum of about 40ma in each coil.

    The site owner does not respond to e-mails, so I am looking elsewhere for assistance. In fact, the circuit provides quite a jerky drive even with no load (and fails completely with even a slight load), so perhaps I should be looking for a better microstepping answer? But that mus wait until I can discover just what I am doing wrong with this simple system. Has anyone got any ideas....?

  2. #2
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Where the power is coming from? Is this possible that it's just because your power supply is not "strong" enough? AND or the step motor ask more current than the poor L293D can provide?
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  3. #3
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Mister-e, thanks for the prompt reply!

    The original commercial controller for this stepper uses an Amtel micro, driving an array of 8 transistors. It runs well off a 6v battery, and is pre-programmed for a set speed.

    I needed a controller with a slightly different speed, and when I saw the circuit I referred to earlier, I thought that would be ideal. It is meant to be a circuit intended to drive a telescope stepper motor of the kind I have.

    I am just using the same motor and the same battery supply the commercial controller used, but substituting this PIC16F627 / L293D circuit to drive the motor. So I know there is adequate power available. The L293D is meant to provide up to 600ma continuous according to the datasheet, but I can only measure a max of 40ma when I put an ammeter on one of the coils. If the motor was overloading the L293D I would expect a greater current?

    So, am I using the L293D incorrectly? Is the PIC code (provided on the circuit I referred to earlier) incorrect? It just sends a 6 bit signal to the L293D to excite a pair of coils, pauses for a measured time, then sends another signal for the next pair of coils. Surely that ought to work?

  4. #4
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Well, i'm really not a Motor Driver pro... so i would suggest you to increase the pulse length and see if it does anything better.

    40mA measurement is not revealant, it's pulse measurement, it give an average of the whole thing, not the peak.. unless you're using something else fancier than a regular DVM.

    6 Volts to a regular LM7805 input may cause stability problem, if my memory serves me well, Min Vin should be 'round 9 Volts.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  5. #5
    Join Date
    Mar 2006
    Location
    Hyderabad (India)
    Posts
    123


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by mister_e View Post
    Well, i'm really not a Motor Driver pro... so i would suggest you to increase the pulse length and see if it does anything better.

    40mA measurement is not revealant, it's pulse measurement, it give an average of the whole thing, not the peak.. unless you're using something else fancier than a regular DVM.

    6 Volts to a regular LM7805 input may cause stability problem, if my memory serves me well, Min Vin should be 'round 9 Volts.
    i find that 293D needs a minimum of 7V for Vs or Vss. this should be sorted out by him first. there should be no issue to supply 8 or 9V and be happy with 7805.

    If he can go for low consumption, some Low drop out regulator like LM2931-5 can be used and then 6V might work, but the current demand should be within the regulator spec
    Last edited by mvs_sarma; - 25th March 2008 at 20:06.
    Regards,
    Sarma

  6. #6
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    TI's datasheet's says that the supply range should be between 4.5 to 36V. If that chip is connected at the regulator output, and the voltage regulator is unstable (wich i don't doubt), there will have a problem indeed. So something to try in meantime, even if i'm not a fan of it... replace the voltage regulator by a diode or two in serie.

    Before i would prefer to monitor the voltage regulator output with a scope to see how bad it is...
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  7. #7
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    So many comments! Thanks, guys!

    The original web-site indicates that this circuit works with the same motors I've got, so I was assuming the components were all reasonably balanced. The regulator (7805) can put out at least 1A, more if it has a decent heatsink. Of course, at the moment nothing gets hot at all!

    The lead-acid battery feed is 6.3v, and the regulator drops this to 4.7v. These voltages do not vary under load. So although they are low, they do not seem to be unstable. I am not sure how to raise the voltage feed - given that I have a battery putting out 6.3v, would it be OK to connect it directly to the input without going through a regulator?

    As Mister-e suspects, the impression I get from listening to the motor is that I am sending short pulses to it, when I really ought to be feeding each coil power continuously (except when they are meant to be turned off!). Power is sent to the motor by the PIC program, which does this:

    ...
    HSTEP1 EQU B'00110110'
    HSTEP2 EQU B'00101000'
    ....
    MOVLW HSTEP1
    MOVWF PORTB
    CALL RA_DELAY ; variable loop to time pulses
    MOVLW HSTEP2
    MOVWF PORTB
    CALL RA_DELAY ; variable loop to time pulses
    ...

    Then the PORTB outputs from the PIC are attached to the inputs on the L293D, and the outputs from the L293D are attached to the stepper coils. Does this code mean the PORTB outputs remain high during the delay loop, thus keeping the L293D feeding the stepper coil? Or do the PORTB outputs reset to zero immediately after they have passed the data?

    You can see why I'm not sure about where the problem might be!


    I suspect I should be microstepping anyway, so another line of attack might be to abandon the L293Ds and go for something else which allows many steps. Is there such a thing?

  8. #8
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    try to increase the delay routine or paste it 2-3 times again to see how better worst it will be.

    Something easy like

    MOVLW HSTEP1
    MOVWF PORTB
    CALL RA_DELAY ; variable loop to time pulses
    CALL RA_DELAY ; variable loop to time pulses
    CALL RA_DELAY ; variable loop to time pulses
    MOVLW HSTEP2
    MOVWF PORTB
    CALL RA_DELAY ; variable loop to time pulses
    CALL RA_DELAY ; variable loop to time pulses
    CALL RA_DELAY ; variable loop to time pulses

    cost nothing to try huh?
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  9. #9
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Well, I tried!

    In fact I don't have to double up the delay - it's 130x125, so I just alter the values.

    Making the delay shorter (5x5) results in no movement from the motor at all - but I expected that would be too fast...

    Making the delay longer (250x250) results in slower movement, but with the same low torque. It's just as if the L293D is only sending one pulse to the coil, rather than holding the coil on until the next change occurs. Surely if you:

    MOVLW HSTEP1 ;(hstep1 is FF, for example)
    MOVWF PORTB

    this should leave all PORTB pins high until PORTB is changed? Or perhaps the L293D only sends one pulse to the motor, and I need to increase the current or duration on this in some way?

  10. #10


    Did you find this post helpful? Yes | No

    Default

    Silly question. Do you have the VS pin (pin 10) of the L293D parts connected directly to the battery? Or is it connected to the 5V supply? That pin supplies the voltage that actually drives the motors and should not be going through the regulator.
    Tim Barr

  11. #11
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    No, very sensible question!

    The circuit I have assembled is precisely as advertised here: http://telescope.marford.me.uk/Proje...controller.htm .

    You will see that I am using a 16 pin L293D, where VS is pin 8, and this is what is connected directly to the battery positive. So there should be lots of power available to the L293D.

    I think it is unlikely to be a failed L293D either, since the circuit actually contains two PICs driving two seperate L293Ds (with slightly different programming), and both of them display the same problem. This circuit is advertised as a working stepper motor driver, but I am coming to the conclusion that maybe it is not!

  12. #12


    Did you find this post helpful? Yes | No

    Default

    Another silly suggestion. Try turning BOD off. Maybe your regulator isn't rock solid enough and BOD is resetting the PIC. The PIC will run at lower voltages than the BOD is set for. Upper level for BOD is 4.4V. According to the code, portB should be static and not pulsed. If this fixes your problem, maybe you could look for a LVDO regulator only a 400mV drop like a STMicro LD29150.
    Last edited by falingtrea; - 27th March 2008 at 20:51.
    Tim Barr

  13. #13
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Umm...What's BOD? Are you talking about the regulator? Are you suggesting that I just feed the +5v regulated line from the battery directly, at 6.3V?

    The difference seems to be minimal, and I suspect it will cause no damage, but is that what you mean?

    Incidentally, I have been looking for any possible difference between what I am doing and the published circuit. The only thing I can see is that the regulator is flanked with a couple of 100nf bead capacitors, and I am using 100nf polyester. Interestingly, the data sheet for the 7805 regulator suggests 30mf capacitors, but I am following the published design. Perhaps there is a problem there...?

  14. #14
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    100nF directly at the output + 1 as close as possible of the pic is recommended. 30uF or higher would be nice at it's input. i usually use 10uF tantalum at the output as well as close to the PIC.

    Any current demanding device have their own 47uF (or higher depending) + 0.1 uF as close as possible.

    BOD: Brown-out detect. It's one of those configuration fuses setting for the PIC you're using.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  15. #15
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Thanks for the education!

    BOD off is still the same. It might have given a little more torque, or that might just have been wishful thinking on my part.

    I have few capacitors on the board, just the ones specified. By now, I'm pretty sure that the PIC is doing the right thing, and that the problem lies with the motor driving L293D circuitry. So I went looking for other drive circuits, and found another which was just like the one I had built!

    So everything seems to be right. The problem is, it isn't. Does anyone think it would be safe to up the voltage beyong 6v? The battery pack that came originally with the motors is 6v, and the coil windings are around 18ohm, suggesting 0.3 Amp.

  16. #16
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default

    Hello Dodgy Geezer,
    I have a little trouble with assembly, Have you put a voltmeter on the enable pins to see if the pic is pulling them high? As I understand it they should be held high while the stepper is running.<br>
    Or Roman Black's Lini Stepper works well I have tried it. Kits for sale on ebay:http://cgi.ebay.com/Lini-stepper-con...QQcmdZViewItem
    Last edited by Archangel; - 28th March 2008 at 16:52.
    If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
    .
    Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
    .
    There simply is no "Happy Spam" If you do it you will disappear from this forum.

  17. #17
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Is there any exact motor Model we can refer to?

    i found this PDF for those interested in Stepper Motor Basics
    http://www.solarbotics.net/library/p...f/motorbas.pdf

    Turning the problem in many ways... i'm still thinking of unsufficient current AND/OR voltage at the driver output. I would suggest you to use a higher voltage source, and connect the driver before the voltage regulator. If you have any variable voltage power supply that would be nice. This bring mvs_sarma's suggestion to the front. Make sense, there's probably some voltage loss at the output.

    Why the previous driver circuit worked... well hard to tell, no schematic or pic of it (with some part# of the transistor/Mosfet)? Any coils or else fancy stuff on it?
    Last edited by mister_e; - 28th March 2008 at 17:31.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  18. #18
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by mister_e View Post

    Turning the problem in many ways... i'm still thinking of unsufficient current AND/OR voltage at the driver output. . . .
    Hi Steve, that was where I was going by asking if the enable pins were held high, as I do not understand the assembler . . . I think those ports should not be pulsed . . .JS
    If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
    .
    Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
    .
    There simply is no "Happy Spam" If you do it you will disappear from this forum.

  19. #19
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Mister-e '..Is there any exact motor Model we can refer to?..'

    There are no markings on the motors. The original controller used a 6v battery pack, and the coil resistance is 18ohm. A similar looking motor is the BPM42 from Astrosyn, but that is specified as 12v.

    Joe S. - thanks for joining the party! i would be happy to rewrite the code in Basic if that would help, but I think the code is working. I programmed the PIC on a Vellerman 8048 unit, which has a limited test function (6 leds and 4 switches), and the test showed the leds all lighting up at the right times. I have also run the code on a couple of software simulators, and it does what it says it does - holds the specified pins high.

    What I cannot simulate is what the L293D is doing (no oscilloscope ). In other circuits I see the possibility of varying the current passed to the stepper, but I don't think you can on the L293D. How does the chip know how much current to pass the stepper?

    The Lini Stepper is very interesting, and I would buy one like a shot - if it supported Bipolar steppers like I have on the telescope. Unfortunately, the telescope hardware is fixed. I was wondering about getting one of these - http://www.jafmotion.co.uk/motordrives.htm

  20. #20
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    i just had a look at L293D... there's an interesting voltage drop.. typical Vs-1.2 to Vs-1.8 v... ok ok @0.6A... but... could this be enough to lost most torque... i would think.

    Probably the original design used MOSFETs, so the voltage loss was reduced to a minimum. Pure guess here.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  21. #21
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    There's still some Sound-Card based Free software you could used... it's still better than nothing. Be carefull with signal amplitude and it should give you some pointers.

    I already used VA (Visual analyser)
    http://hacca.altervista.org/
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  22. #22
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Wow! A free oscilloscope! Thank you, Mister-e! Now I must find an old sound-card....

    "Probably the original design used MOSFETs, so the voltage loss was reduced to a minimum..." - I thought I was actually building the original design. You will clearly see +6v on the original circuit diagram. But I am now inclined to think you are right, and this circuit does not actually work as specified...

  23. #23
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Well it has to work as expected with HIS OWN step motor... but how many different model is there in the world?

    You can now buy a sound card under 20$ here... 1/10 of almost any decent used scope.

    When i talked about the original design, i meant your previous one... not the one you found and post here.
    Last edited by mister_e; - 28th March 2008 at 22:52.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  24. #24
    T.Jackson's Avatar
    T.Jackson Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by mister_e View Post
    There's still some Sound-Card based Free software you could used... it's still better than nothing. Be carefull with signal amplitude and it should give you some pointers.

    I already used VA (Visual analyser)
    http://hacca.altervista.org/
    That GUI is real buggy on my machine.

  25. #25
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    "...but how many different model is there in the world...?"

    He is using a standard chinese clock-drive for an EQ4/5 scope - so am I. I was expecting our motors to be identical....

    "You can now buy a sound card under 20$ here.."

    I have some separate sound cards already - I was assuming that you plugged the probes into the game port on them. But now I have downloaded VA, I see there is no info about where to connect the probes to at all. Do you connect the probe to the 'microphone-in'? If so, I can connect it to the built-in sound card on the motherboard of the system I am using. It is odd that there seems to be no information about this vital point...?

    "When i talked about the original design, i meant your previous one.."

    Sorry - I misunderstood. In fact, I still have the original handcontroller. My problem is not that it was broken, but that it drove the motors at the correct speed for an EQ4/5 mount (1/10 rpm) and I wanted to use it for an EQ3-2 mount (1/11 rmp). Those are the final speeds - there is a gear train of approx 200:1 between the scope and the stepper. The original controller used an Amtel micro, directly driving an array of 8 transistors. They could well be MOSFETs.

  26. #26
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    you plug your probe to in Line in, make sure you set your Soundcard Mixer properly as well.

    In VA, Click on Settings>> In/Out Device to confirm your setings.


    Trent, i can't tell, it worked for me awhile back, not sure about the current one...

    EDIT seems that I had the same version... doesn't seems to bug here.
    Last edited by mister_e; - 29th March 2008 at 01:21.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  27. #27
    Join Date
    Aug 2006
    Location
    Look, behind you.
    Posts
    2,818


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Dodgy Geezer View Post
    Mister-e '..Is there any exact motor Model we can refer to?..'

    There are no markings on the motors. The original controller used a 6v battery pack, and the coil resistance is 18ohm. A similar looking motor is the BPM42 from Astrosyn, but that is specified as 12v.

    Joe S. - thanks for joining the party! i would be happy to rewrite the code in Basic if that would help, but I think the code is working. I programmed the PIC on a Vellerman 8048 unit, which has a limited test function (6 leds and 4 switches), and the test showed the leds all lighting up at the right times. I have also run the code on a couple of software simulators, and it does what it says it does - holds the specified pins high.

    What I cannot simulate is what the L293D is doing (no oscilloscope ). In other circuits I see the possibility of varying the current passed to the stepper, but I don't think you can on the L293D. How does the chip know how much current to pass the stepper?

    The Lini Stepper is very interesting, and I would buy one like a shot - if it supported Bipolar steppers like I have on the telescope. Unfortunately, the telescope hardware is fixed. I was wondering about getting one of these - http://www.jafmotion.co.uk/motordrives.htm
    I wasn't asking you to rewrite anything, Your reference to the website incurred me to think you found this code rather than wrote it, my appologies! My statement stands as is, I do not understand your code, so I do not know that it did that, I was simply suggesting a possible area to search.
    Regards
    JS
    If you do not believe in MAGIC, Consider how currency has value simply by printing it, and is then traded for real assets.
    .
    Gold is the money of kings, silver is the money of gentlemen, barter is the money of peasants - but debt is the money of slaves
    .
    There simply is no "Happy Spam" If you do it you will disappear from this forum.

  28. #28
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    ASM looks way harder than it is actually.

    Let's see few common expressions

    MOVLW .10
    MOVWF PORTA
    It's nothing else than PORTA = 10
    <hr>
    BTFSC PORTA.1
    GOTO $-1

    Could be translated as

    WHILE PORTA.1=1 : WEND

    OR

    TestPORTABit1:
    IF PORTA.1=0 then GOTO DoSomething
    Goto TestPORTABit1
    DoSomething:
    <hr>
    MOVF PORTA
    MOVWF MyVar

    would be MyVar=PORTA
    <hr>
    INCF MyVar,F

    MyVar=MyVar + 1
    <hr>
    nothing really hard to learn... but yeah... could be a bit hard to follow/understand a little bit when you begin. 18Fs and DsPIC assembler is way easier to code, but you have more Mnemonics to learn.
    Last edited by mister_e; - 29th March 2008 at 02:08.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  29. #29
    T.Jackson's Avatar
    T.Jackson Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by mister_e View Post

    Trent, i can't tell, it worked for me awhile back, not sure about the current one...

    EDIT seems that I had the same version... doesn't seems to bug here.
    Try resizing some of the windows. Maximize the main GUI then restore, then manually adjust it. Sometimes messes real bad. Same problems with the tool windows too, like for the voltmeter.

  30. #30
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    T Jackson "Your reference to the website incurred me to think you found this code rather than wrote it..."

    You are right. I have copied this code directly off this website. That's why I am on this forum - because the website claims it works together with the circuit they provide, but I can't make that happen.

    Having said that, I have found other sites where precisely the same circuit is used with similar code, so it seems that I am doing something wrong.

    Mister-e - I can't make VA work either. I am not skilled in electronics, but expected to see a set of 6v steps if I put a probe on the output of this circuit and attached the ground to 0v. Instead, what I got was a sine wave. In fact, whatever I do, I seem to get a sine wave. The oscilliscope setup setup just seems to measure RMS or peak-to-peak - I can find no DC setting at all. When I turn the circuit on, the sine wave is interrupted by short pulses which decay to 0v rapidly, so if those are real I am failing to get a proper signal to the stepper coil, but since I can't even make the scope line jump up when I put 6v across the terminal I can't be sure that VA is working at all....

  31. #31
    T.Jackson's Avatar
    T.Jackson Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Dodgy Geezer View Post
    T Jackson "Your reference to the website incurred me to think you found this code rather than wrote it..."

    You are right. I have copied this code directly off this website. That's why I am on this forum - because the website claims it works together with the circuit they provide, but I can't make that happen.
    Excuse me? I think you might have mistaken me for someone else my friend. I have made no references to any websites in this thread.

  32. #32
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Apologies for the confusion. What I meant to put over was:

    I - refered to the website I got the stepper driver code I am using from (referenced in my first post.

    You - said "Your reference to the website incurred me to think you found this code rather than wrote it..."

    I - was trying to point out that I HAD found the code rather than created it.

    However, I have now found out that no PC software-only scope using the sound card will provide a DC service, so I am no further forward...

  33. #33
    malc-c's Avatar
    malc-c Guest


    Did you find this post helpful? Yes | No

    Default

    One other thing to look at is balance - if you scope is out of balance it will become hard to drive the scope in RA, especially if you are increasing the frequency of the steps as this provides less time to energise the coils in the stepper.

    One thing to try is modifying the drive / code for a 4 step motor.

    Found a pdf that explains the theory behind increasing speed and the drop off of tourque http://www.national.com/an/AN/AN-828.pdf
    Last edited by malc-c; - 3rd April 2008 at 20:05.

  34. #34
    T.Jackson's Avatar
    T.Jackson Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by Dodgy Geezer View Post
    However, I have now found out that no PC software-only scope using the sound card will provide a DC service, so I am no further forward...
    Bypass the coupling cap on the SND card and you'll have a DC scope
    Last edited by T.Jackson; - 4th April 2008 at 07:36.

  35. #35
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    There's always an old scope somewhere... a good ol' 20Mhz dual channel is still good enough for many purpose. Sure you can found one for ~50$ used. There's still some USB model available here and there... and finnally there's some PC card.

    But.. hey wait a minute... sure you have a TV? You could try to build this one... based on PIC12F675
    http://www.dos4ever.com/uscope/uscope_e.html

    i always been amazed of that... never tested it though...yeah limited... but come on.. it's a PIC12F675!!!
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  36. #36
    T.Jackson's Avatar
    T.Jackson Guest


    Did you find this post helpful? Yes | No

    Default

    You've got some brass ones mister_e, I'll give you that much. Why in the world are you advertising PBP for? Are you aware that this forum is owned & run by a company which sells this product?

  37. #37
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    WTF is going on with you Trent? If you have any anger... buy yourself a dog, find friends, consult a psychologist, drop me PM or e-mail directly!
    Last edited by mister_e; - 4th April 2008 at 17:57.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  38. #38
    skimask's Avatar
    skimask Guest


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by mister_e View Post
    WTF is going on with you Trent?
    ---Insert that cool little spinning 6 pack GIF here...of darn good beer...keep it near...to your ear...and don't fall...on your rear...by a deer...ok I'm done---

  39. #39
    Join Date
    Mar 2008
    Posts
    17


    Did you find this post helpful? Yes | No

    Default

    Well, I'm about to give up on this circuit - it's hard to see any future in it. Instead, I've just ordered one of these JaF Microstep modules. http://www.jafmotion.co.uk/motordrives.htm .

    Let's see if it does what it say on the tin....

  40. #40


    Did you find this post helpful? Yes | No

    Default

    Trent, looks to me like mister-e provides a link on his website to a US distributer of PBP. I don't think he sells it himself.
    Tim Barr

Similar Threads

  1. MPASM Path & File Name Length Limtation
    By Brian J Walsh in forum mel PIC BASIC Pro
    Replies: 7
    Last Post: - 14th June 2008, 16:48
  2. Differential Drive Programming
    By shaiqbashir in forum mel PIC BASIC Pro
    Replies: 14
    Last Post: - 30th December 2006, 15:03
  3. motors browning out PIC
    By mbw123 in forum mel PIC BASIC Pro
    Replies: 13
    Last Post: - 17th November 2006, 03:50
  4. CD ROM Motors.
    By Dwayne in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 14th April 2006, 18:59
  5. problems with Servo Motors...
    By saturnX in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 11th March 2006, 02:43

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts