

The Victron MultiPlus Compact Inverter/Charger 230V (Part ID: 12/1200/50-16) is a versatile and reliable device designed to convert DC power from batteries into AC power for household appliances. Additionally, it functions as a battery charger, allowing batteries to be charged from an AC source such as a generator or grid power. Its compact design makes it ideal for installations where space is limited, and it is widely used in off-grid systems, mobile applications (e.g., RVs, boats), and backup power setups.








The following table outlines the key technical details of the Victron MultiPlus Compact Inverter/Charger 230V:
| Specification | Value |
|---|---|
| Manufacturer Part ID | 12/1200/50-16 |
| Input Voltage Range (DC) | 9.5V - 17V |
| Output Voltage (AC) | 230V ± 2% |
| Continuous Output Power | 1200VA (1000W at 25°C) |
| Peak Power | 2400W |
| Charger Input Voltage Range | 187V - 265V AC |
| Maximum Battery Charging Current | 50A |
| Transfer Switch Rating | 16A |
| Efficiency | 94% |
| Dimensions (H x W x D) | 375 x 214 x 110 mm |
| Weight | 10 kg |
| Operating Temperature Range | -40°C to +65°C |
The MultiPlus Compact Inverter/Charger has several connection points for DC input, AC input/output, and communication. Below is a summary of the key connections:
| Pin/Port | Description |
|---|---|
| DC Input Terminals | Connect to the battery bank (positive and negative terminals). |
| AC Input Terminals | Connect to an AC power source (e.g., grid or generator). |
| AC Output Terminals | Provide 230V AC power to connected appliances or loads. |
| VE.Bus Ports | Communication ports for connecting to Victron monitoring and control devices. |
| Remote On/Off Port | Allows remote control of the inverter/charger. |
| Grounding Terminal | Connect to the system's grounding point for safety. |
DC Input Connection:
AC Input Connection:
AC Output Connection:
Grounding:
Configuration:
While the MultiPlus Compact is not directly controlled by an Arduino, you can use an Arduino UNO to monitor its status via the VE.Bus communication protocol. Below is an example of how to read data from the MultiPlus Compact using an Arduino and a VE.Direct to USB interface:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial veDirect(10, 11); // RX = pin 10, TX = pin 11
void setup() {
Serial.begin(9600); // Initialize serial monitor
veDirect.begin(19200); // Initialize VE.Direct communication
Serial.println("Starting VE.Direct communication...");
}
void loop() {
// Check if data is available from the VE.Direct port
if (veDirect.available()) {
String data = ""; // Initialize a string to store incoming data
// Read data from VE.Direct
while (veDirect.available()) {
char c = veDirect.read();
data += c;
}
// Print the received data to the serial monitor
Serial.println("Received data:");
Serial.println(data);
}
delay(1000); // Wait for 1 second before reading again
}
Note: This example assumes you have a VE.Direct to USB interface connected to the MultiPlus Compact. Modify the code as needed based on your specific setup.
Inverter Does Not Turn On:
Overload or Shutdown:
Battery Not Charging:
Overheating:
By following this documentation, users can effectively install, configure, and maintain the Victron MultiPlus Compact Inverter/Charger 230V for a wide range of applications.