Has someone tried to get this AMC controller work with any pneumatics!?
I'm building a joyride type motion simulator and hoping to use this AMC controller together with pneumatic actuators.. Any advice!?
int PWM1 = 10;
int PWM2 = 9;
int M1IN1 = 2;
int M1IN2 = 3;
int M2IN1 = 4;
int M2IN2 = 5;
void setup() {
pinMode(PWM1, OUTPUT);
pinMode(PWM2, OUTPUT);
pinMode(M1IN1, OUTPUT);
pinMode(M1IN2, OUTPUT);
pinMode(M2IN1, OUTPUT);
pinMode(M2IN2, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(PWM2, HIGH);
digitalWrite(M2IN1, LOW);
digitalWrite(M2IN2, HIGH);
delay(2000);
digitalWrite(PWM2, LOW);
digitalWrite(M2IN1, LOW);
digitalWrite(M2IN2, LOW);
delay(2000);
}
wptm wrote:I've got it. After digging a lot on other forums, I finally gave a try to use IRL540N instead of IRF3205. Now, it works.
I don't want to be off topic I'll describe the details in an other topic.
Return to Controllers and Drivers Projects
Users browsing this forum: No registered users and 2 guests