Victron Energy VE.direct binding

So I’ve written a VE.direct binding for my SmartShunt and BlueSolar MPPT charger (though it should work with a lot of stuff in their range) Have finally got around to moving my rig to openhab 3 so I’m wanting to do a PR to make this public/official. Before that, though, I’m looking for anybody who is interested/has Victron charger/BMV/shunt hardware attached via USB (VE.direct) who’s interested in doing some testing/validation/etc. Anybody out there?

Latest version 2021-09-30 11:22 -5 @ https://www.actulos.com/org.openhab.binding.vedirect-3.2.0-SNAPSHOT.jar

1 Like

:wave: here!
I got:

  • Victron SmartShunt 500A
  • Victron BlueSolar 100/30

got it working with Venus OS on a dedicated Raspberry Pi with VE.direct cables. If I could integrate it directly into OH3 - that would be perfect.

I haven’t followed Victron stuff much, but from what i remember they either support CAN or Modbus or MQTT. Isn’t it?

You can download “Venus OS” (OSS from Victron) directly to say a Raspberry Pi and then you have basically a “Venus GX” - with that you can activate an MQTT-Server, and it publishes multiple information via MQTT - or you can configure a Modbus on it, yes! But for that you need either “Venus GX” (~300 €) or you use an Raspberry Pi (v2 would do it)

@binderth Do you use your setup for data logging only or do you directly control anything on the devices? (The relay on the solar controller for example)? Also, are you using the secondary input for temperature or battery midpoint on the shunt (I haven’t implemented anything for that yet, but it will be pretty trivial to do so).

Here’s a copy of the latest jar.
https://www.actulos.com/org.openhab.binding.vedirect-3.2.0-SNAPSHOT.jar

Here’s a quick starter if you want to play with it, some setup on multiple ve.direct cables:

#1: Determine the serial #'s of your VE.direct cables:

# lsusb -d 0403:6015 -v
Bus 003 Device 009: ID 0403:6015 Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO)
...
iSerial                 3 VE4E9T3K
...
Bus 003 Device 006: ID 0403:6015 Future Technology Devices International, Ltd Bridge(I2C/SPI/UART/FIFO)
...
iSerial                 3 VE4O3XXR

#2: Setup udev rules so the cables come up the same way every time (/dev/bluesolarX):

SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6015", ATTRS{serial}=="VE4E9T3K", SYMLINK+="bluesolar1"
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6015", ATTRS{serial}=="VE4O3XXR", SYMLINK+="bluesolar2"

#3: Add those to your EXTRA_JAVA_OPTS – -Dgnu.iorxtx.SerialPorts (See Serial Port Configuration | openHAB if you’ve not done this before).

I just started with using it in my RV. Just soldered the cables and setup Venus OS and was right there, when I got a list of the MQTT-topics of the broker.
So - no, I neither use the relay on the solar MPPT nor do I use temperatures or stuff yet.

I plan to use with VE.direct:

  1. getting the data for logging and optimizing my use of the RV! :wink:
  2. adding a GPS and temperature to my setup
  3. adding tank sensors for fresh water and grey water tanks.

that’s it for now.
I try to download your binding and testing it… could take a while, as the weekend is already planned, but perhaps I find some time…

Well, it sounds like your use case is pretty much identical to mine :smiley: I don’t recall VE having anything with a GPS. But I can send you some scripts I have that grab a from regular USB GPS dongle and update OpenHAB’s location, TZ, etc.

As far as the tank sensors go, I know VE has a couple things for that but I don’t think any of them have VE.direct. I haven’t set anything up yet myself to get or track tank data.

you’re rigtht, I read the other day, that GPS, tank sensors and temperatures can be integrated within Venus OS; but after re-reading it seems, they’re NOT VE.direct, but USB-dongles again! :wink:
so, yeah that’s not VE.direct based and therefore not included in your binding! :wink:

I just updated the jar with a version that auto-detects VE.Direct serial cables. Mucking about w/the udev stuff is still necessary if you have more than one device that ends up as /dev/ttyUSBX (and you will likely need to manually change the auto-detected /dev/ttyUSBX to your custom name). But I’d wanted to get this change done as it sets the full item names to: vedirect:bmv:VE4O3XXR:HQ2101T1RM2:battery1_current1, where the ID’s are the serial # of the cable and the serial # of the attached device. Just makes some stuff easier for debugging and adding/removing the devices. So now, setup should be as easy as plugging in a VE.direct cable and it will show up in your inbox, and after adding it as a Thing, the attached device will then show up in your inbox to be added as well.

oh! I don’t have the factory VE.direct cables. I soldered my own for a fraction of the price… :wink:
I just use CP2104 USB to TTL modules with Micro JST connectors… nonetheless I have added those to my udev-rules and now I have to drive up to my RV to test it out…

PS: I did come across a “Layer 8”-error! :wink:

  1. don’t use the /dev/tty... but the way longer /dev/serial/by-id/usb-Silicon_Labs_CP2104_USB_to_UART_Bridge_Controller_008B6F5A-if00-port0
  2. crash OH3 - it restarts! :wink:
2021-09-28 16:45:10.635 [INFO ] [internal.VEDirectSerialBridgeHandler] - Unknown: HERE2
2021-09-28 16:45:10.682 [INFO ] [internal.VEDirectSerialBridgeHandler] - Initializing VEDirect Serial Bridge: /dev/serial/by-id/usb-Silicon_Labs_CP2104_USB_to_UART_Bridge_Controller_008B834F-if00-port0

btw, “HERE2” still is present with udev-rules:

2021-09-28 16:51:27.370 [INFO ] [internal.VEDirectSerialBridgeHandler] - Unknown: HERE2
2021-09-28 16:51:27.421 [INFO ] [internal.VEDirectSerialBridgeHandler] - Initializing VEDirect Serial Bridge: /dev/ttyUSB_solar
2021-09-28 16:51:27.408 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectSolar' changed from UNINITIALIZED to INITIALIZING
2021-09-28 16:51:27.429 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectSolar' changed from INITIALIZING to UNKNOWN
2021-09-28 16:51:27.433 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectSolar' changed from UNKNOWN to OFFLINE (COMMUNICATION_ERROR): Invalid port: /dev/ttyUSB_solar

(I don’t have it connected, so that explains the “Communication Error”)

I think you need to add /dev/ttyUSB_solar to your startup args"

-Dgnu.io.rxtx.SerialPorts=/dev/ttyUSB_solar

The error you’re hitting is before it even tries to open the serial port, it can’t find it in OpenHAB’s SerialPortManager. Also it’s weird that the long version doesn’t work… Wonder why OpenHAB would put a char limit in place.

Put up an updated version that should be less likely to get the serial ports in a mucked up state.

1 Like

I could connect fine (I added the openhab user to the tty group). Buuuut, after that I have the thing… but how can I add channels?

The bridge doesn’t have any channels. It will detect what’s attached and create a new Thing in your inbox for a solar controller/BMV/Inverter/whatever that will have the channels.

That didn’t happen with my Setup. I’ll try again later and are there any more information in DEBUG mode? Then I’ll put the binding in debig/trace before…

If you wish to have solution which does not require playing with udev you can give a shot to [co7io] Persistent serial port identifier provider for openhab. This is openhab side implementation of same logic which binds serial port to specific hardware and not identifier assigned by linux.

1 Like

Yea, if you set the logging to debugging there will be some more info, and I can add a bunch more if necessary. Post everything you’re seeing I guess.

1 Like

ok, didn’t set to TRACE yet, but now I got this (probaply overlooked it the day before):

2021-09-30 15:49:04.120 [INFO ] [g.discovery.internal.PersistentInbox] - Added new thing 'vedirect:bmv:VEDirectSolar:HQ2050G12MZ' to inbox.
2021-09-30 15:49:04.121 [INFO ] [openhab.event.InboxAddedEvent       ] - Discovery Result with UID 'vedirect:bmv:VEDirectSolar:HQ2050G12MZ' has been added.

So right now I could add both Things, added all channels as equipment to my model and got this:

2021-09-30 15:49:38.724 [INFO ] [internal.VEDirectSerialBridgeHandler] - Initializing VEDirect Serial Bridge: /dev/ttyUSB_shunt
2021-09-30 15:49:38.743 [INFO ] [internal.VEDirectSerialBridgeHandler] - Connecting to VE.Direct using /dev/ttyUSB_shunt.
2021-09-30 15:49:39.086 [ERROR] [internal.VEDirectSerialBridgeHandler] - Invalid block: Csum 9879!
2021-09-30 15:49:39.089 [ERROR] [internal.VEDirectSerialBridgeHandler] - 70001000056A0FF58
PID	0xA056
FW	156
SER#	HQ18044A75V
V	27010
I	1400
VPV	74100
PPV	41
CS	5
MPPT	1
OR	0x00000000
ERR	0
LOAD	ON
H19	17654
H20	36
H21	112
H22	144
H23	450
HSDS	93
Checksum	h
==> /var/log/openhab/events.log <==
2021-09-30 15:49:38.733 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectShunt' changed from OFFLINE (COMMUNICATION_ERROR): Invalid port: ttyUSB_shunt to UNKNOWN
2021-09-30 15:49:38.778 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectShunt' changed from UNKNOWN to ONLINE
==> /var/log/openhab/openhab.log <==
2021-09-30 15:49:40.090 [ERROR] [overy.VEDirectDeviceDiscoveryService] - Declaring Unknown Device
2021-09-30 15:49:40.096 [INFO ] [g.discovery.internal.PersistentInbox] - Added new thing 'vedirect:mppt:VEDirectShunt:HQ18044A75V' to inbox.
==> /var/log/openhab/events.log <==
2021-09-30 15:49:40.096 [INFO ] [openhab.event.InboxAddedEvent       ] - Discovery Result with UID 'vedirect:mppt:VEDirectShunt:HQ18044A75V' has been added.
2021-09-30 15:51:11.916 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:bmv:VEDirectSolar:BinderShunt' changed from UNINITIALIZED to INITIALIZING
2021-09-30 15:51:11.931 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:bmv:VEDirectSolar:BinderShunt' changed from INITIALIZING to ONLINE
==> /var/log/openhab/openhab.log <==
2021-09-30 15:51:16.929 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_max_power
2021-09-30 15:51:16.945 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_yield
2021-09-30 15:51:38.194 [WARN ] [re.thing.internal.ThingFactoryHelper] - Could not create channel 'relay', because channel type 'vedirect:switch' could not be found.
==> /var/log/openhab/events.log <==
2021-09-30 15:51:38.213 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:mppt:VEDirectShunt:BinderSolar' changed from UNINITIALIZED to INITIALIZING
2021-09-30 15:51:38.230 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:mppt:VEDirectShunt:BinderSolar' changed from INITIALIZING to ONLINE
==> /var/log/openhab/openhab.log <==
2021-09-30 15:51:43.227 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_max_power
2021-09-30 15:51:43.246 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_yield
2021-09-30 15:52:59.816 [WARN ] [ore.internal.thing.ThingTypeResource] - Cannot find channel type: vedirect:switch
2021-09-30 15:53:06.693 [WARN ] [ore.internal.thing.ThingTypeResource] - Cannot find channel type: vedirect:switch
2021-09-30 15:53:24.052 [WARN ] [ore.internal.thing.ThingTypeResource] - Cannot find channel type: vedirect:switch

I just activated TRACE logging in the console log:set TRACE org.openhab.binding.VEDirect I get the following:

2021-09-30 16:06:46.634 [INFO ] [internal.VEDirectSerialBridgeHandler] - Initializing VEDirect Serial Bridge: /dev/ttyUSB_shunt
2021-09-30 16:06:46.672 [INFO ] [internal.VEDirectSerialBridgeHandler] - Connecting to VE.Direct using /dev/ttyUSB_shunt.
==> /var/log/openhab/events.log <==
2021-09-30 16:06:46.605 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectShunt' changed from UNINITIALIZED (DISABLED) to INITIALIZING
2021-09-30 16:06:46.642 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectShunt' changed from INITIALIZING to UNKNOWN
2021-09-30 16:06:46.712 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:mppt:VEDirectShunt:BinderSolar' changed from UNINITIALIZED (BRIDGE_UNINITIALIZED) to INITIALIZING
2021-09-30 16:06:46.737 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:mppt:VEDirectShunt:BinderSolar' changed from INITIALIZING to ONLINE
2021-09-30 16:06:46.752 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectShunt' changed from UNKNOWN to ONLINE
==> /var/log/openhab/openhab.log <==
2021-09-30 16:06:47.499 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
==> /var/log/openhab/events.log <==
2021-09-30 16:06:47.526 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ControllerState' changed from NULL to FLOAT
2021-09-30 16:06:47.580 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerVoltage' changed from NULL to 27.02 V
2021-09-30 16:06:47.751 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerCurrent' changed from NULL to 1.5 A
==> /var/log/openhab/openhab.log <==
2021-09-30 16:06:48.514 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
==> /var/log/openhab/events.log <==
2021-09-30 16:06:48.388 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelVoltage' changed from NULL to 73.03 V
2021-09-30 16:06:48.532 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelPower' changed from NULL to 43.28 W
==> /var/log/openhab/openhab.log <==
2021-09-30 16:06:49.516 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:50.257 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:06:50.503 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:51.244 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:06:51.504 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:51.734 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_max_power
2021-09-30 16:06:51.758 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_yield
2021-09-30 16:06:51.870 [INFO ] [internal.VEDirectSerialBridgeHandler] - Initializing VEDirect Serial Bridge: /dev/ttyUSB_solar
2021-09-30 16:06:51.888 [INFO ] [internal.VEDirectSerialBridgeHandler] - Connecting to VE.Direct using /dev/ttyUSB_solar.
==> /var/log/openhab/events.log <==
2021-09-30 16:06:51.809 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_MaxPowerYesterday' changed from NULL to 450 W
2021-09-30 16:06:51.842 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectSolar' changed from UNINITIALIZED (DISABLED) to INITIALIZING
2021-09-30 16:06:51.884 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectSolar' changed from INITIALIZING to UNKNOWN
2021-09-30 16:06:51.914 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:bmv:VEDirectSolar:BinderShunt' changed from UNINITIALIZED (BRIDGE_UNINITIALIZED) to INITIALIZING
2021-09-30 16:06:51.936 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:serial:VEDirectSolar' changed from UNKNOWN to ONLINE
2021-09-30 16:06:51.951 [INFO ] [ab.event.ThingStatusInfoChangedEvent] - Thing 'vedirect:bmv:VEDirectSolar:BinderShunt' changed from INITIALIZING to ONLINE
==> /var/log/openhab/openhab.log <==
2021-09-30 16:06:52.505 [ERROR] [internal.VEDirectSerialBridgeHandler] - Invalid block: Csum 54472!
2021-09-30 16:06:52.508 [ERROR] [internal.VEDirectSerialBridgeHandler] - 7D1ED00900000
PID	0xA056
FW	156
SER#	HQ18044A75V
V	27020
I	1400
VPV	73090
PPV	41
CS	5
MPPT	1
OR	0x00000000
ERR	0
LOAD	ON
H19	17655
H20	37
H21	112
H22	144
H23	450
HSDS	93
Checksum	^
2021-09-30 16:06:53.498 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:53.622 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
==> /var/log/openhab/events.log <==
2021-09-30 16:06:53.619 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartShunt500A_Battery1_Current1' changed from NULL to 0.77 A
2021-09-30 16:06:53.632 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartShunt500A_Percentage' changed from NULL to 100 %
==> /var/log/openhab/openhab.log <==
2021-09-30 16:06:54.500 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:54.605 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:06:55.503 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:55.605 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:06:56.307 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:06:56.504 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:56.602 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:06:56.949 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_max_power
2021-09-30 16:06:56.968 [ERROR] [irect.internal.VEDirectDeviceHandler] - Trying to update yesterday_yield
2021-09-30 16:06:57.515 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:58.517 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:06:59.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:06:59.520 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:00.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -9
2021-09-30 16:07:00.514 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:01.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:01.517 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:02.098 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:02.527 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:03.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
==> /var/log/openhab/events.log <==
2021-09-30 16:07:02.928 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerCurrent' changed from 1.5 A to 1.4 A
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:03.341 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:03.537 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:04.102 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
==> /var/log/openhab/events.log <==
2021-09-30 16:07:03.536 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelPower' changed from 43.28 W to 40.62 W
2021-09-30 16:07:03.545 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerVoltage' changed from 27.02 V to 27.01 V
2021-09-30 16:07:03.547 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelVoltage' changed from 73.03 V to 73.11 V
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:04.532 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:05.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:05.533 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:06.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:06.537 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:07.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:07.539 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:08.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -9
2021-09-30 16:07:08.553 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:09.105 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
==> /var/log/openhab/events.log <==
2021-09-30 16:07:09.113 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartShunt500A_Battery1_Current1' changed from 0.77 A to 0.8 A
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:09.534 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:10.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:10.396 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:10.538 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:11.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:11.548 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:12.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:12.553 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:13.099 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:13.553 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:14.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:14.569 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:14.571 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:15.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:15.560 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:16.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:16.569 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:17.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:17.575 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:18.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
==> /var/log/openhab/events.log <==
2021-09-30 16:07:18.120 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerCurrent' changed from 1.4 A to 1.5 A
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:18.584 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:19.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
==> /var/log/openhab/events.log <==
2021-09-30 16:07:18.588 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelPower' changed from 40.62 W to 41.29 W
2021-09-30 16:07:18.597 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelVoltage' changed from 73.11 V to 73.14 V
2021-09-30 16:07:18.600 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerVoltage' changed from 27.01 V to 27.02 V
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:19.570 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:20.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:20.569 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:21.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:21.572 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:22.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:22.572 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:23.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:23.590 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:23.593 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:24.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:24.590 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:25.103 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
==> /var/log/openhab/events.log <==
2021-09-30 16:07:25.112 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartShunt500A_Battery1_Current1' changed from 0.8 A to 0.74 A
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:25.592 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:26.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -10
2021-09-30 16:07:26.595 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:26.601 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:27.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:27.604 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:28.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:28.607 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:28.610 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:29.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:29.607 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:30.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:30.592 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:31.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:31.608 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:31.612 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:32.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:32.606 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:33.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
2021-09-30 16:07:33.602 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:34.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
==> /var/log/openhab/events.log <==
2021-09-30 16:07:33.309 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerCurrent' changed from 1.5 A to 1.4 A
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:34.603 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:34.607 [WARN ] [irect.internal.VEDirectDeviceHandler] - Unknown ASYNC msg: 0207: 00 00 00 00
2021-09-30 16:07:35.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
==> /var/log/openhab/events.log <==
2021-09-30 16:07:34.497 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelPower' changed from 41.29 W to 40.3 W
2021-09-30 16:07:34.499 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_PanelVoltage' changed from 73.14 V to 73.32 V
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:35.613 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:36.100 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11
==> /var/log/openhab/events.log <==
2021-09-30 16:07:35.624 [INFO ] [openhab.event.ItemStateChangedEvent ] - Item 'BinderSmartSolarMPPT10030_ChargerVoltage' changed from 27.02 V to 27.01 V
==> /var/log/openhab/openhab.log <==
2021-09-30 16:07:36.605 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  FW : 156
2021-09-30 16:07:37.101 [ERROR] [irect.internal.VEDirectDeviceHandler] - Unknown TEXT msg:  VS : -11

One more problem: I don’t seem to to get the Binding out of DEBUG-Logging…?


As you can see, I set the log-level to INFO again, but it keeps spitting out all DEBUG information… :wink: