

The ActoDC is an electronic component designed to convert alternating current (AC) to direct current (DC). This actuator is essential in applications where devices require a stable DC supply but are initially powered by an AC source. Common applications include power supplies for electronic devices, battery charging systems, and any other circuits where DC power is needed but only AC is available.








| Pin Number | Description | Notes |
|---|---|---|
| 1 | AC Input (Live) | Connect to AC phase |
| 2 | AC Input (Neutral) | Connect to AC neutral |
| 3 | DC Output (+) | Positive DC output |
| 4 | DC Output (-) | Negative DC output |
| 5 | Ground | Connect to system ground |
Connecting AC Input:
Connecting DC Output:
Grounding:
Q: Can the ActoDC be used with any AC voltage? A: The ActoDC can be used with AC voltages within the specified input range of 85VAC to 264VAC.
Q: Is the output voltage adjustable? A: The output voltage range is fixed. Ensure you select the correct model for your required DC output.
Q: What safety precautions should be taken when using the ActoDC? A: Always ensure proper grounding, use appropriate protective devices, and follow electrical codes for safety.
// Example code to monitor the DC output voltage of the ActoDC actuator
// using an Arduino UNO. This code assumes the use of an analog input to
// measure the DC voltage.
const int analogPin = A0; // Analog input pin that the DC output is connected to
float voltage = 0.0; // Variable to hold the voltage reading
void setup() {
Serial.begin(9600); // Start serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog input
voltage = sensorValue * (5.0 / 1023.0); // Convert the analog reading to voltage
Serial.print("DC Output Voltage: ");
Serial.println(voltage); // Print the voltage to the Serial Monitor
delay(1000); // Wait for a second before taking another reading
}
Note: The above code is a simple demonstration and assumes that the output voltage of the ActoDC is within the 0-5V range suitable for direct connection to the Arduino's analog input. If the ActoDC's output voltage is higher, a voltage divider or level shifter is required to bring the voltage within the Arduino's input range.