Smart Meter / Switch KWS-303L

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:

PropertyValue
baud rate9600
parityeven
stop bits1
Ared wire from RS 485 connector
Bblack wire from RS 485 connector

And I found some holding registers:

RegisterDescriptionExampleGain
1Rated voltage (V)(220V)220V(Fixed) => 22000100
2Rated current (A) (40V)40A(Fixed) => 4000100
14Active Voltage (V)229.6 => 22960100
18Active Amperage (A)0.012A => 121000
26Active Power (W)3.12W=> 31210
34??
42??
48Power Factor0.99 =>9901000
51Active Frequency (Hz)50Hz => 5000100
55Consumed Energy (Kw)5.5Kw => 55001000
60Active Temperature (Co)251
61Timing (minutes)100 => 1001
63Switch on / offOn/Off => 1 / 0
64Over Voltage Limit (V)250V => 250010
65Under Voltage Limit (V)85V => 85010
66Over Amperage Limit (A)26A => 26010
67Over Power Limit (W)11W => 11010
71Back Light time (minutes)61
72Over Temperature Limit (Co)5110
74Over Energy Limit (Kw)12kW=>1200100
81Screen RotationNormal/Rotated => 1/0
82Black Light %801