Hi, not an issue but a question. I want to free up pins of esp32s3, now i'am running 4 steppers with rmt driver. Can i run 4 steppers using 74HC595 with i2s?
It's a 4 automotive gauge steppers via sti6606z driver (only step+dir), so i don't have EN pins.
stepperMux0 = fastAccelStepperEngine.stepperConnectToPin(0 | PIN_I2S_FLAG, DRIVER_I2S_MUX);
stepperMux0->setDirectionPin(1 | PIN_I2S_FLAG);
stepperMux1 = fastAccelStepperEngine.stepperConnectToPin(2 | PIN_I2S_FLAG, DRIVER_I2S_MUX);
stepperMux1->setDirectionPin(3 | PIN_I2S_FLAG);
stepperMux2 = fastAccelStepperEngine.stepperConnectToPin(4 | PIN_I2S_FLAG, DRIVER_I2S_MUX);
stepperMux2->setDirectionPin(5 | PIN_I2S_FLAG);
stepperMux3 = fastAccelStepperEngine.stepperConnectToPin(6 | PIN_I2S_FLAG, DRIVER_I2S_MUX);
stepperMux3->setDirectionPin(7 | PIN_I2S_FLAG);
Will this work?
Thanks for this great library!
Hi, not an issue but a question. I want to free up pins of esp32s3, now i'am running 4 steppers with rmt driver. Can i run 4 steppers using 74HC595 with i2s?
It's a 4 automotive gauge steppers via sti6606z driver (only step+dir), so i don't have EN pins.
Will this work?
Thanks for this great library!