4 Phase Stepper

I am working on a project for a kids museum and get to learn about stepper motors. I have taken a 4 phase 6 wire unipolar stepper motor from an old printer.
http://www.mitsumi.co.jp/latest/Catalog/pdf/motor_m35sp_9_e.pdf

I was trying to use the L293D to control it. Mainly cause I ordered the chip it thinking the stepper was bipolar. I found this drawing for a 6 wire unipolar stepper...

Is it possible to short the two center taps and use the bipolar stepper two-wire circuit as shown in this link?
http://www.tigoe.com/pcomp/code/circuits/motors/stepper-motors/
Are all 6 wire stepper motors wired the same way?

And to figure out which wire belongs to which coil, I will have to a "short" test to find out which set of 3 wires belong to each coil? Then the resistance between the coil ends should be half of the resistance between the end and the center tap?

Thanks in advance.

I believe you have answered your own question correctly in each case.

If you want to use the L293D to control it, ignore the centre tap connections and treat it as a bipolar stepper - but it will need a higher voltage used that way.

Thanks. I was wrong on one though. The center tap should be left alone and not connected to ground.

Could build your own driver -

http://arduino.cc/forum/index.php/topic,84809.0.html

I did it using an ATtiny2313 and 4 - IRF89N60A fets. makes a driver that has a step and a direction input and drives the 4 phases of a unipolar motor. Could use other driver transistors. Would make it easy for 1 arduino to control a number of motors.

I had already ordered the chip. Which came in today and I've wired it up. I seem to be experiencing some odd behavior. I've uploaded the video.

I'm using the schematics and code from Tom Igoe's page. I used the L293 bipolar circuit. The center taps are left floating.
http://www.tigoe.com/pcomp/code/circuits/motors/stepper-motors/

You can see the motor looks like it's stepping 3 clicks forward and then one back. I've made the speed slower and painted one of the teeth to better see the behavior. I can not figure out why this is happening.

Sorry if google hasn't converted the videos yet.

Check your wiring - FOr any stepper problem first double check the wiring, second check the code.

kf2qd, I did that a bit ago I missed a ground. But that didn't fix the problem.

I'm using an o'scope connected to the pins on the Arduino and stepper motor.
goo.gl/xN3YP
The problem is when both pulses change at the same time. This is shown in the picture on the first pulse. You'll see one go high and one go low at the same time. This happens again right after the mid-line of the screen. So it's software...

I found my problem.
const int stepsPerRevolution = 48;
I had this set to 7.5 because that was my step size. Well, this number needs to be 48. 1 revolution = 360 / 7.5 = 48
I looks like that 7.5 was the perfect number to cause the pins to change at the same time causing the problem. It's working perfectly. Also the center taps need to be connected to the power source. Not 100% why. Hopefully the machine book at home covers stepper motors.

Stepper working.

Do to using integer math, any time you put a non-integer value in you would wind up with a count that would reset, and thus multiple pins would be affected.