I found this switch on Aliexpress. It’s quite interesting, but it has lack of documentation
It has following features:
- Frequency meter
- Voltage meter
- Consumed energy meter
- Current meter
- Temperature meter (via thermal couple in NTC connector)
- RS-485 connectivity (modbus) connector
- Active power meter
- Power factor meter
- On/Off switch
- Over/Under voltage protection
- Current Limit
- Max current 40A

Inside I found quite accurate soldering, thick busbars and AT32F421 32-bit ARM Cortext-M4 MCU.
And there is no any description how to communication with RS-485. Even seller don’t know how to use it. In the settings menu of this device I assigned to it slave=2 and start testing.
I suspected that it should has a number of holing registers and to identify the list of registers I wrote simple python script, that just scan all registers from device:
from pymodbus import FramerType
from pymodbus.client import ModbusSerialClient
client = ModbusSerialClient(port="/dev/tty.usbserial-A5069RR4", baudrate=9600, parity='E',
stopbits=1, timeout=0.1, retries=1, framer=FramerType.RTU)
client.connect()
for i in range(1,100):
try:
rr = client.read_holding_registers(i, count=1, slave=2)
v = client.convert_from_registers(rr.registers, word_order='big', data_type=client.DATATYPE.INT16)
print("%d | %d" % (i, v))
except Exception as e:
print(">>ERROR: %s" % (str(e)))
pass
client.close()
But before I had to found correct baud rates, stop bits and parity. In reality most of the cheap devices using 9600 as baud rate. So there are no many combination I had to check …
So the configuration is following:
Property | Value |
---|---|
baud rate | 9600 |
parity | even |
stop bits | 1 |
A | red wire from RS 485 connector |
B | black wire from RS 485 connector |
And I found some holding registers:
Register | Description | Example | Gain |
---|---|---|---|
1 | Rated voltage (V)(220V) | 220V(Fixed) => 22000 | 100 |
2 | Rated current (A) (40V) | 40A(Fixed) => 4000 | 100 |
14 | Active Voltage (V) | 229.6 => 22960 | 100 |
18 | Active Amperage (A) | 0.012A => 12 | 1000 |
26 | Active Power (W) | 3.12W=> 312 | 10 |
34 | ?? | ||
42 | ?? | ||
48 | Power Factor | 0.99 =>990 | 1000 |
51 | Active Frequency (Hz) | 50Hz => 5000 | 100 |
55 | Consumed Energy (Kw) | 5.5Kw => 5500 | 1000 |
60 | Active Temperature (Co) | 25 | 1 |
61 | Timing (minutes) | 100 => 100 | 1 |
63 | Switch on / off | On/Off => 1 / 0 | – |
64 | Over Voltage Limit (V) | 250V => 2500 | 10 |
65 | Under Voltage Limit (V) | 85V => 850 | 10 |
66 | Over Amperage Limit (A) | 26A => 260 | 10 |
67 | Over Power Limit (W) | 11W => 110 | 10 |
71 | Back Light time (minutes) | 6 | 1 |
72 | Over Temperature Limit (Co) | 51 | 10 |
74 | Over Energy Limit (Kw) | 12kW=>1200 | 100 |
81 | Screen Rotation | Normal/Rotated => 1/0 | – |
82 | Black Light % | 80 | 1 |