Super Duty Actuators, manufactured by Firgelli Automations (Part ID: F-SD-H-220-12v-XX), are robust devices designed to convert electrical energy into mechanical motion. These actuators are specifically engineered for heavy-duty applications requiring high torque, precision, and reliability. Their durable construction and high-performance capabilities make them ideal for use in industrial automation, robotics, agricultural machinery, and other demanding environments.
Below are the key technical details for the Super Duty Actuators:
Parameter | Value |
---|---|
Manufacturer | Firgelli Automations |
Part ID | F-SD-H-220-12v-XX |
Input Voltage | 12V DC |
Maximum Load Capacity | 220 lbs (100 kg) |
Stroke Length Options | Customizable (XX denotes length in mm) |
Speed (No Load) | 0.5 in/sec (12.7 mm/sec) |
Duty Cycle | 25% at full load |
Operating Temperature | -26°C to +65°C (-15°F to +150°F) |
Protection Rating | IP66 (dust-tight and water-resistant) |
The actuator typically comes with a 2-wire configuration for power and control. The pinout is as follows:
Wire Color | Function | Description |
---|---|---|
Red | Positive (+) | Connect to the positive terminal of the power supply. |
Black | Negative (-) | Connect to the negative terminal of the power supply. |
Below is an example of how to control the Super Duty Actuator using an Arduino UNO and an L298N H-bridge motor driver:
// Arduino UNO code to control the Super Duty Actuator
// Ensure the actuator is connected to the L298N motor driver
// IN1 and IN2 control the actuator's direction
const int IN1 = 7; // L298N IN1 pin connected to Arduino pin 7
const int IN2 = 8; // L298N IN2 pin connected to Arduino pin 8
void setup() {
pinMode(IN1, OUTPUT); // Set IN1 as output
pinMode(IN2, OUTPUT); // Set IN2 as output
}
void loop() {
// Extend the actuator
digitalWrite(IN1, HIGH); // Set IN1 high
digitalWrite(IN2, LOW); // Set IN2 low
delay(5000); // Extend for 5 seconds
// Stop the actuator
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
delay(2000); // Pause for 2 seconds
// Retract the actuator
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, HIGH); // Set IN2 high
delay(5000); // Retract for 5 seconds
// Stop the actuator
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
delay(2000); // Pause for 2 seconds
}
Actuator Does Not Move:
Actuator Moves in One Direction Only:
Overheating:
Unusual Noise or Vibration:
Can the actuator be used outdoors? Yes, the IP66 rating ensures it is suitable for outdoor use, but avoid prolonged submersion.
What is the maximum stroke length available? The stroke length is customizable. Contact Firgelli Automations for specific options.
Can I control the actuator with a PWM signal? Yes, you can use a PWM signal with a motor driver to control the speed and position of the actuator.
What happens if I exceed the duty cycle? Exceeding the duty cycle may cause the actuator to overheat and reduce its lifespan. Always adhere to the specified duty cycle.