The PA-17-POT Linear Actuator is a robust and powerful actuator designed by Progressive Automations. It is specifically engineered to provide precise linear motion control in various applications, including but not limited to automation systems, industrial machinery, and vehicular automation. The built-in potentiometer allows for position feedback, which is essential for applications requiring precise control of the actuator extension.
Pin Number | Description | Notes |
---|---|---|
1 | Power (+12V DC) | Red wire |
2 | Ground (0V) | Black wire |
3 | Potentiometer Wiper Output | White wire (Position Feedback) |
4 | Potentiometer +5V Reference | Typically not used externally |
5 | Potentiometer Ground | Typically not used externally |
// Define the connection pins
const int potPin = A0; // Potentiometer wiper (position feedback) connected to analog pin A0
const int actuatorPin1 = 2; // Actuator pin 1 connected to digital pin 2
const int actuatorPin2 = 3; // Actuator pin 2 connected to digital pin 3
void setup() {
pinMode(actuatorPin1, OUTPUT);
pinMode(actuatorPin2, OUTPUT);
Serial.begin(9600);
}
void loop() {
int potValue = analogRead(potPin); // Read the potentiometer value
Serial.println(potValue); // Print the potentiometer value to the serial monitor
// Extend the actuator
digitalWrite(actuatorPin1, HIGH);
digitalWrite(actuatorPin2, LOW);
delay(1000); // Wait for 1 second
// Retract the actuator
digitalWrite(actuatorPin1, LOW);
digitalWrite(actuatorPin2, HIGH);
delay(1000); // Wait for 1 second
// Stop the actuator
digitalWrite(actuatorPin1, LOW);
digitalWrite(actuatorPin2, LOW);
delay(1000); // Wait for 1 second
}
Q: Can the PA-17-POT be used outdoors? A: Yes, with an IP66 rating, it is dust and water-resistant, suitable for outdoor use.
Q: What is the purpose of the built-in potentiometer? A: The potentiometer provides position feedback, which can be used for precise control of the actuator's extension and retraction.
Q: How can I control the speed of the actuator? A: The speed can be controlled by using a PWM signal to modulate the power supplied to the actuator.
Q: What should I do if the actuator is not extending or retracting to its full length? A: Check if the duty cycle is being exceeded or if there is an obstruction. Also, verify that the potentiometer is functioning correctly and providing accurate feedback.
For further assistance, contact Progressive Automations' technical support.