Hi, I have problems using a 12 V Firgelli actuator. I just started to use arduino.
Code should be fine, it works with the 6V actuator, so I think it's a wiring problem (however the same wiring for 6V works ok)
I drive the actuator (red, ground) from a 12V.
I connect the white wire from the actuator to arduino pin 11.
The arduino board is powered from the same 12V.
This setup works on the 6V actuator, not 12V. Is this somewhere a voltage problem?
Many thanks !
The code:
#include <Servo.h>
Servo s;
void setup() {
s.attach(11);
}
void loop() {
s.writeMicroseconds(2000);
delay(4000);
s.writeMicroseconds(1000);
delay(4000);
}