<div dir="ltr"><div><div><div>What sort of current can a A4988 carry ?<br><br></div>Many thanks for responding.<br><br></div>(Can it support the Stepper Motor I'm using?)<br><br>: )<br><br></div>Tim_1<br></div><div class="gmail_extra"><br><div class="gmail_quote">On 9 May 2015 at 10:32, Justin Mitchell <span dir="ltr"><<a href="mailto:justin@discordia.org.uk" target="_blank">justin@discordia.org.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This does seem the hard way to do things when something like an A4988 stepstick is a similar price and way simpler to use.<br>
<br>
Did you need some specifically higher current or other requirement?<br>
<div class="HOEnZb"><div class="h5"><br>
On 9 May 2015 7:09 am, Tim Moore <<a href="mailto:timmoore47@gmail.com">timmoore47@gmail.com</a>> wrote:<br>
><br>
> Magic blue smoke was released ! : ((( So I've ordered another from China.<br>
><br>
> I'll double check everything, as H configuration can short +12V to ground so easily ! Software can do that ! ?<br>
><br>
> On another matter the L298N has two little cans marked '220 35V UT', I've pnly recently come across them. What are they ?<br>
><br>
> Is there any favoured software to drive them that is known to work Arduino friendly?<br>
><br>
> Many many thanks for responding !<br>
><br>
> : )))<br>
><br>
> Tim_1<br>
><br>
> On 8 May 2015 at 22:03, Ceri Clatworthy <<a href="mailto:ceri.clatworthy@gmail.com">ceri.clatworthy@gmail.com</a>> wrote:<br>
>><br>
>> Fetch in in Monday an we will get it going<br>
>><br>
>> Unless the magic blue smoke has been released<br>
>> Ceri<br>
>><br>
>> On 8 May 2015 17:59, "Tim Moore" <<a href="mailto:timmoore47@gmail.com">timmoore47@gmail.com</a>> wrote:<br>
>>><br>
>>> Well made sort of progress:-<br>
>>><br>
>>> Got a 3D stepper type 17H16-2994S in the hope it would be powerful enough to drive the thing I want to rotate.<br>
>>><br>
>>> Based on an Arduino Uno with a L298N stepper controller,<br>
>>><br>
>>> I found this software which I adapted for just one motor.<br>
>>><br>
>>> quote<br>
>>><br>
>>> // connect motor controller pins to Arduino digital pins<br>
>>> // motor one<br>
>>> int enA = 10;<br>
>>> int in1 = 9;<br>
>>> int in2 = 8;<br>
>>> // motor two<br>
>>> // int enB = 5;<br>
>>> // int in3 = 7;<br>
>>> // int in4 = 6;<br>
>>> void setup()<br>
>>> {<br>
>>> // set all the motor control pins to outputs<br>
>>> pinMode(enA, OUTPUT);<br>
>>> // pinMode(enB, OUTPUT);<br>
>>> pinMode(in1, OUTPUT);<br>
>>> pinMode(in2, OUTPUT);<br>
>>> // pinMode(in3, OUTPUT);<br>
>>> // pinMode(in4, OUTPUT);<br>
>>> }<br>
>>> void demoOne()<br>
>>> {<br>
>>> // this function will run the motors in both directions at a fixed speed<br>
>>> // turn on motor A<br>
>>> digitalWrite(in1, HIGH);<br>
>>> digitalWrite(in2, LOW);<br>
>>> // set speed to 200 out of possible range 0~255<br>
>>> analogWrite(enA, 200);<br>
>>> // turn on motor B<br>
>>> // digitalWrite(in3, HIGH);<br>
>>> // digitalWrite(in4, LOW);<br>
>>> // set speed to 200 out of possible range 0~255<br>
>>> // analogWrite(enB, 200);<br>
>>> delay(2000);<br>
>>> // now change motor directions<br>
>>> digitalWrite(in1, LOW);<br>
>>> digitalWrite(in2, HIGH); <br>
>>> // digitalWrite(in3, LOW);<br>
>>> // digitalWrite(in4, HIGH);<br>
>>> //delay(2000);<br>
>>> // now turn off motors<br>
>>> digitalWrite(in1, LOW);<br>
>>> digitalWrite(in2, LOW); <br>
>>> // digitalWrite(in3, LOW);<br>
>>> // digitalWrite(in4, LOW);<br>
>>> }<br>
>>> void demoTwo()<br>
>>> {<br>
>>> // this function will run the motors across the range of possible speeds<br>
>>> // note that maximum speed is determined by the motor itself and the operating voltage<br>
>>> // the PWM values sent by analogWrite() are fractions of the maximum speed possible<br>
>>> // by your hardware<br>
>>> // turn on motors<br>
>>> digitalWrite(in1, LOW);<br>
>>> digitalWrite(in2, HIGH); <br>
>>> // digitalWrite(in3, LOW);<br>
>>> // digitalWrite(in4, HIGH);<br>
>>> // accelerate from zero to maximum speed<br>
>>> for (int i = 0; i < 256; i++)<br>
>>> {<br>
>>> analogWrite(enA, i);<br>
>>> // analogWrite(enB, i);<br>
>>> delay(20);<br>
>>> }<br>
>>> // decelerate from maximum speed to zero<br>
>>> for (int i = 255; i >= 0; --i)<br>
>>> {<br>
>>> analogWrite(enA, i);<br>
>>> // analogWrite(enB, i);<br>
>>> delay(20);<br>
>>> }<br>
>>> // now turn off motors<br>
>>> digitalWrite(in1, LOW);<br>
>>> digitalWrite(in2, LOW); <br>
>>> // digitalWrite(in3, LOW);<br>
>>> // digitalWrite(in4, LOW); <br>
>>> }<br>
>>> void loop()<br>
>>> {<br>
>>> demoOne();<br>
>>> delay(1000);<br>
>>> demoTwo();<br>
>>> delay(1000);<br>
>>> }<br>
>>><br>
>>><br>
>>> Wired it all up with a 12V 5A power supply and the stepper shaft twitched a bit , but the L298N emitted a puff of smoke and the heatsink got very hot !<br>
>>><br>
>>> Now I've checked the Arduino Uno and it seems aok.<br>
>>><br>
>>> The stepper motor measure 2.7 Ohm from the +12v rail to nearest motor pin, ditto earth to nearest pin.<br>
>>><br>
>>> Applying 1.5V at 0.8 Amp to the each of the pair of wires the shaft stops being rotatable. the two motor wires are at infinity.<br>
>>><br>
>>> I've assumed that's a sign that I've not killed the stepper motor.<br>
>>><br>
>>> Now before I get another L298N, I thought a few precautions are worth while ! Slaying a series of L298N's doesn't seem that smart !!! *LOL*<br>
>>><br>
>>> Any thoughts from anyone as to what to investigate next ? (I thought perhaps the software was wrong for this model of stepper motor ? I'm capable of making crass errors here..)<br>
>>><br>
>>> : )<br>
>>><br>
>>> Tim_1<br>
>>><br>
>>> On 19 April 2015 at 11:41, Ceri Clatworthy <<a href="mailto:ceri.clatworthy@gmail.com">ceri.clatworthy@gmail.com</a>> wrote:<br>
>>>><br>
>>>> Reverse. ..<br>
>>>><br>
>>>> If ULN 2003...<br>
>>>> The wiggle pins in other direction! !!<br>
>>>><br>
>>>> On 19 Apr 2015 11:23, "Tim Moore" <<a href="mailto:timmoore47@gmail.com">timmoore47@gmail.com</a>> wrote:<br>
>>>>><br>
>>>>> Many thanks Ceri for the tip ! Greatly appreciated !<br>
>>>>><br>
>>>>> : )))<br>
>>>>><br>
>>>>> Tim_1<br>
>>>>><br>
>>>>> On 19 April 2015 at 11:21, Tim Moore <<a href="mailto:timmoore47@gmail.com">timmoore47@gmail.com</a>> wrote:<br>
>>>>>><br>
>>>>>> Update:-<br>
>>>>>><br>
>>>>>> It may not be very riveting but the change to 6400 (and the deletion of */ at the top of the code worked fine !<br>
>>>>>><br>
>>>>>> the count for<br>
>>>>>> 90 deg was 500 and time 52.5 secs<br>
>>>>>> 180 deg was 1000 105<br>
>>>>>> 270 deg was 1500 157.5<br>
>>>>>> 360 deg was 2000 210 secs ( 3m 30 secs) approx<br>
>>>>>><br>
>>>>>> (I hope !)<br>
>>>>>><br>
>>>>>> Now this might be very boring, but it also might help a Newbie to stepper motors test their new purchase out too !<br>
>>>>>><br>
>>>>>> Anyone know if the controller board can make it go in reverse ?<br>
>>>>>><br>
>>>>>> : )))<br>
>>>>>><br>
>>>>>> Tim_1<br>
>>>>>><br>
>>>>>> On 19 April 2015 at 10:23, Tim Moore <<a href="mailto:timmoore47@gmail.com">timmoore47@gmail.com</a>> wrote:<br>
>>>>>>><br>
>>>>>>> I've been trying to get this working on a 28BYJ-48 with ULN2003 cheapest stepper motor set up.<br>
>>>>>>><br>
>>>>>>> Created 30 Nov. 2009<br>
>>>>>>> by Tom Igoe<br>
>>>>>>> <br>
>>>>>>> */<br>
>>>>>>><br>
>>>>>>> #include <Stepper.h><br>
>>>>>>><br>
>>>>>>> const int stepsPerRevolution = 1440; // change this to fit the number of steps per revolution<br>
>>>>>>> // for your motor<br>
>>>>>>><br>
>>>>>>> // initialize the stepper library on pins 8 through 11:<br>
>>>>>>> Stepper myStepper(stepsPerRevolution, 8,9,10,11); <br>
>>>>>>><br>
>>>>>>> int stepCount = 0; // number of steps the motor has taken<br>
>>>>>>><br>
>>>>>>> void setup() {<br>
>>>>>>> // initialize the serial port:<br>
>>>>>>> Serial.begin(9600);<br>
>>>>>>> }<br>
>>>>>>><br>
>>>>>>> void loop() {<br>
>>>>>>> // step one step:<br>
>>>>>>> myStepper.step(1);<br>
>>>>>>> Serial.print("steps:" );<br>
>>>>>>> Serial.println(stepCount);<br>
>>>>>>> stepCount++;<br>
>>>>>>> delay(100);<br>
>>>>>>> }<br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> Spec:-<br>
>>>>>>><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> Voltage : 5V<br>
>>>>>>> Diameter : 28mm<br>
>>>>>>> Step angle : 5.625 x 1 / 64<br>
>>>>>>> Reduction ratio : 1 / 64<br>
>>>>>>> 5 Line 4 phase<br>
>>>>>>> Current draw : 92mA<br>
>>>>>>> Operating Frequency : 100pps<br>
>>>>>>> Dimensions : 35mm x 28mm<br>
>>>>>>> 4 mounting holes<br>
>>>>>>> ULN2003 chip<br>
>>>>>>> A, B, C, D four-phase status LED<br>
>>>>>>><br>
>>>>>>> ___<br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> Now the divide by 64 seems to be a stumbling block ?<br>
>>>>>>><br>
>>>>>>> What I'm trying to do is use the 1.8 degree characteristic to get 100 pulses to achieve a total rotation of 180 degrees to the shaft.<br>
>>>>>>><br>
>>>>>>> A period of anything up to two minutes is fine for the 180 degree rotation.<br>
>>>>>>><br>
>>>>>>> So far it twitches a bit but not much else e.g. not very exciting.<br>
>>>>>>><br>
>>>>>>> Should the stepsPerRevolution = 1440 be changed to stepsPerRevolution = 6400 ?<br>
>>>>>>><br>
>>>>>>> Maybe I've got the Arduino pins a tad wrong ?<br>
>>>>>>><br>
>>>>>>> : )<br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> Tim_1<br>
>>>>>>><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> On 18 April 2015 at 19:58, Justin Mitchell <<a href="mailto:justin@swansea.hackspace.org.uk">justin@swansea.hackspace.org.uk</a>> wrote:<br>
>>>>>>>><br>
>>>>>>>> Yes, one motor one step-stick.<br>
>>>>>>>><br>
>>>>>>>> Control it from an arduino, or any other micro, just needs two GPIO<br>
>>>>>>>> lines.<br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>> On Sat, 2015-04-18 at 16:04 +0100, Tim Moore wrote:<br>
>>>>>>>> > So a single 'step-stick' would do it ?<br>
>>>>>>>> ><br>
>>>>>>>> ><br>
>>>>>>>> > Many thanks for responding !<br>
>>>>>>>> ><br>
>>>>>>>> > : )))<br>
>>>>>>>> ><br>
>>>>>>>> ><br>
>>>>>>>> > Tim_1<br>
>>>>>>>> ><br>
>>>>>>>> ><br>
>>>>>>>> > On 18 April 2015 at 15:09, Justin Mitchell <<a href="mailto:justin@discordia.org.uk">justin@discordia.org.uk</a>><br>
>>>>>>>> > wrote:<br>
>>>>>>>> > It's an interface for all the stuff you need to drive a 3d<br>
>>>>>>>> > printer, takes 5 step-sticks for stepper driving, has power<br>
>>>>>>>> > MOSFETs to pwm the hotends and heated bed, and a bunch of<br>
>>>>>>>> > inputs for end stops and thermistors. You plug it into an<br>
>>>>>>>> > Arduino mega board, install some software like Marlin and it<br>
>>>>>>>> > can run your printer, or mixed to control a CNC mill or laser<br>
>>>>>>>> > cutter.<br>
>>>>>>>> ><br>
>>>>>>>> > Way over kill for driving one motor :)<br>
>>>>>>>> ><br>
>>>>>>>> > On 18 Apr 2015 2:51 pm, Tim Moore <<a href="mailto:timmoore47@gmail.com">timmoore47@gmail.com</a>><br>
>>>>>>>> > wrote:<br>
>>>>>>>> > ><br>
>>>>>>>> > > Wow ! Loads of interesting links and ideas !<br>
>>>>>>>> > ><br>
>>>>>>>> > > Its a very slow rotation, so inertia is not a problem.<br>
>>>>>>>> > ><br>
>>>>>>>> > > Is a 'RAMPS 1.4' useful ? what does it do ?<br>
>>>>>>>> > ><br>
>>>>>>>> > > Many thanks to all who have responded !<br>
>>>>>>>> > ><br>
>>>>>>>> > > : )))<br>
>>>>>>>> > ><br>
>>>>>>>> > > Tim_1<br>
>>>>>>>> > ><br>
>>>>>>>> > > On 18 April 2015 at 13:57, oliver Oliver<br>
>>>>>>>> > <<a href="mailto:oliver@oliverjenkins.com">oliver@oliverjenkins.com</a>> wrote:<br>
>>>>>>>> > >><br>
>>>>>>>> > >> Think about pulleys or gears. I don't know if you want the<br>
>>>>>>>> > pole to stop at a particular point or not. Inertia in 1m pole<br>
>>>>>>>> > will be higher than braking force of a stepper motor. So it<br>
>>>>>>>> > will continue to spin after you stop the motor. Giving you an<br>
>>>>>>>> > unpredictable 180 plus rotation.<br>
>>>>>>>> > >><br>
>>>>>>>> > >> For a pulley arrangement look at t5 timing belts. you can<br>
>>>>>>>> > easily print the pulleys using a reprap. There are libraries<br>
>>>>>>>> > on thingiverse.<br>
>>>>>>>> > >><br>
>>>>>>>> > >> A worm gear would be better, but you can't print those.<br>
>>>>>>>> > >><br>
>>>>>>>> > >> Oli<br>
>>>>>>>> > >><br>
>>>>>>>> > >> On 18 Apr 2015 12:33, "Tim Moore" <<a href="mailto:timmoore47@gmail.com">timmoore47@gmail.com</a>><br>
>>>>>>>> > wrote:<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> I'm trying to carefully rorate a metre long light weight<br>
>>>>>>>> > pole through 180 degrees.<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> I've got a Stepper Motor type 28BYJ-48 working fine, but<br>
>>>>>>>> > I'm sure I need one that is a bit more chunky !<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> I've got a 17HS16-2004S NEMA 17 (42 x 42 mm) high torque<br>
>>>>>>>> > 1.8 degree stepper motor on the way with a controller card<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> But I've not got a very clear vision yet what else I might<br>
>>>>>>>> > need and if there is any Arduino example software listing that<br>
>>>>>>>> > would be good to use to get it to work ?<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> I don't want to reinvent the wheel ! *LOL*<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> Any thoughts anyone ?<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> : )))<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> Tim_1<br>
>>>>>>>> > >>><br>
>>>>>>>> > >>> _______________________________________________<br>
>>>>>>>> > >>> Hackspace mailing list<br>
>>>>>>>> > >>> <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>>>>>>> > >>> <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>>>>>>> > >>><br>
>>>>>>>> > >><br>
>>>>>>>> > >> _______________________________________________<br>
>>>>>>>> > >> Hackspace mailing list<br>
>>>>>>>> > >> <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>>>>>>> > >> <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>>>>>>> > >><br>
>>>>>>>> > ><br>
>>>>>>>> > _______________________________________________<br>
>>>>>>>> > Hackspace mailing list<br>
>>>>>>>> > <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>>>>>>> > <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>>>>>>> ><br>
>>>>>>>> ><br>
>>>>>>>> ><br>
>>>>>>>> > _______________________________________________<br>
>>>>>>>> > Hackspace mailing list<br>
>>>>>>>> > <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>>>>>>> > <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>> _______________________________________________<br>
>>>>>>>> Hackspace mailing list<br>
>>>>>>>> <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>>>>>>> <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>>>>>><br>
>>>>>>><br>
>>>>>><br>
>>>>><br>
>>>>><br>
>>>>> _______________________________________________<br>
>>>>> Hackspace mailing list<br>
>>>>> <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>>>> <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>>>><br>
>>>><br>
>>>> _______________________________________________<br>
>>>> Hackspace mailing list<br>
>>>> <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>>> <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>>><br>
>>><br>
>>><br>
>>> _______________________________________________<br>
>>> Hackspace mailing list<br>
>>> <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>>> <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>>><br>
>><br>
>> _______________________________________________<br>
>> Hackspace mailing list<br>
>> <a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
>> <a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
>><br>
><br>
_______________________________________________<br>
Hackspace mailing list<br>
<a href="mailto:Hackspace@swansea.hackspace.org.uk">Hackspace@swansea.hackspace.org.uk</a><br>
<a href="http://swansea.hackspace.org.uk/mailman/listinfo/hackspace" target="_blank">http://swansea.hackspace.org.uk/mailman/listinfo/hackspace</a><br>
</div></div></blockquote></div><br></div>