Inverter

Control Frame (ID 0x1C) - Commands to Dometic Inverter

Frame Format: [ID=1C] [01] [FF] [01] [FF] [FF] [FF] [FF] [FF]

Frame Layout:

Byte0123-7
ContentCommandParameterControlReserved
PurposeControl commandParameter valueInverter on/off

Byte 0: Control Commands

ValueCommandDescription
0x01OVP SetOver-voltage protection setting
0x02OVP RecOver-voltage protection recovery
0x03UVP SetUnder-voltage protection setting
0x04UVP RecUnder-voltage protection recovery
0x05UV AlarmUnder-voltage alarm
0x06OP VoltOutput voltage control
0x07RS232 BdRS232 baud rate setting
0x08OP FRQOutput frequency control
0x10SHT RetryShutdown retry command

Byte 1: Parameter Value

Range: 0-65535 (0x0000-0xFFFF)

  • Used with control commands that require a parameter value
  • Example: Voltage settings, frequency values, retry counts

Byte 2: Inverter Control

ValueStateDescription
0x00OffInverter disabled
0x01OnInverter enabled

Bytes 3-7: Reserved

Fixed values [FF] [FF] [FF] [FF] [FF] - unused in current implementation.


Info Frame (ID 0x1D) - Status from Dometic Inverter

Frame Format: [ID=1D] [00] [00] [01] [FF] [FF] [FF] [FF] [FF]

Frame Layout:

Byte0123456-7
ContentInput VOutput IWorkload %ProtectionSystem StatusAdditionalReserved

Byte 0: Input Voltage

Format: Input voltage × 0.01V

  • Range: 0-655.35V (0x00-0xFF for display range)
  • Example: 0x4C = 76 → 0.76V (likely scaled differently in practice)

Byte 1: Output Current

Format: Output amperage

  • Range: 0-255A
  • Resolution: 1A increments

Byte 2: Workload Percentage

Format: Current load as percentage

  • Range: 0-255% (0x00-0xFF)
  • Resolution: 1% increments

Byte 3: Protection Status Flags (Bits 0-3)

BitFlagDescription
Bit 0UVPUnder-voltage protection active
Bit 1OVPOver-voltage protection active
Bit 2OLPOver-load protection active
Bit 3FLPFault protection active

Byte 4: System Status Flags

BitFlagDescription
Bit 0On/Off0=Off, 1=On
Bit 1Grid OKGrid power status
Bit 2LIN ErrorCommunication error
Bit 3Set ErrorConfiguration error
Bit 4OTPOver-temperature protection
Bit 5Battery LowLow battery warning
Bit 6Battery HighHigh battery warning
Bit 7Grid SyncGrid synchronization status

Byte 5: Additional Status

BitFlagDescription
Bit 6BypassBypass mode active
Bit 7Grid SyncGrid synchronization active

Bytes 6-7: Reserved

Currently unused in this frame format.


Communication Example

Setting Inverter On with Over-Voltage Protection at 14.4V

Control Frame (0x1C):

[0x01] [0x90] [0x01] [FF] [FF] [FF] [FF] [FF]
Byte 0: 0x01 = OVP Set command
Byte 1: 0x90 = 144 (14.4V scaled by 10)
Byte 2: 0x01 = Inverter on

Reading Current Status

Info Frame (0x1D) Response:

[0x7D] [0x0A] [0x4B] [0x00] [0x82] [0x00] [FF] [FF]
Byte 0: 0x7D = 125 → 1.25V input (scaled)
Byte 1: 0x0A = 10A output current
Byte 2: 0x4B = 75% workload
Byte 3: 0x00 = No protection flags active
Byte 4: 0x82 = On + Grid OK + Battery High
Byte 5: 0x00 = No additional status