Altera_Forum
Honored Contributor
11 years agostepper motor and FPGA question about pins assignment
Hi everyone. My mission this week is to make a step motor move by FPGA
I need to program the FPGA to send out a pulse, and i plan to use the clock to send a 3.3V and then connect to the stepper motor, however, i have no idea which pin to use... I tried to write some codes, here are my codes(it's probably really stupid to someone, but please help me) module simplemotion(switch, clk, motion); input switch,clk ; output motion; assign motion = switch&clk ; endmodule so when switch is on , then motion will be equal to clk. However, it doesnt move. Would anybody help me.:cry: