Hi,
I have been trying to get router (RUTX50) data into HomeAssistant using Modbus protocol. In short I have been able to get:
- Signal Strength
- System Temperature
- Cell ID
- GSM Bands
- RSRP, RSRQ and SINR
I have tried in the same way to poll Data received and sent this month with:

So this is what I did on the router:

and for the requested data:

If I do the test it returns data which could make sense. I can't fully test it but it could be all right.
Then on the HA side I have made this yaml configuration:
```
- name: TeltonikaRutOS
type: tcp
host: 192.168.1.1
port: 502
sensors:
- name: "RUTX: Mobile Signal Strength" #aka sensor.rutx_mobile_signal_strength
unique_id: mbl_strngth01
scan_interval: 30
unit_of_measurement: "dBm"
device_class: signal_strength
slave: 1
address: 4
- name: "system_temperature" #aka sensor.system_temperature
unique_id: sstm_tmprtr01
scan_interval: 30
unit_of_measurement: "°C"
device_class: temperature
slave: 1
address: 6
- name: "bytes received mtd"
unique_id: bts_rcvd_mtd01
scan_interval: 30
data_type: uint32
unit_of_measurement: "B"
slave: 1
address: 194
- name: "bytes sent mtd"
unique_id: bts_snt_mtd01
scan_interval: 30
data_type: uint32
input_type: holding
state_class: total_increasing
device_class: data_size
count: 2
unit_of_measurement: "B"
slave: 1
address: 196
- name: "RUTX: ExtraModBus" #aka sensor.rutx_extramodbus aka /tmp/regfile
scan_interval: 10
slave: 1
address: 1024 #I have no idea why the router creates register 1025, but Home Assistant needs 1024
data_type: string
count: 125
```
The coding for bytes sent and received are slightly different to understand the different behaviour but bytes_sent_mtd is the most complete. Where signal strength and system temperature are consistent and not giving issues I can't get consistent numbers for bytes received and sent. They flip/flop all over the place and I can't figure out where I seem to be off.. The data HA vs Router are not the same in the first place and where the router return rather consistent numbers gives HA numbers which don't make sense.
what do I miss?