plugins icon indicating copy to clipboard operation
plugins copied to clipboard

ebus: fix version and connect problem

Open z1marco opened this issue 2 years ago • 1 comments

bugfix for version and connect problem

z1marco avatar Dec 11 '23 15:12 z1marco

In der Datei plugins/ebus/init.py muss anstelle

if not self.connected: self.logger.info("eBusd not connected") return

der Code

if not self.connected: self.connect() if not self.connected: self.logger.info("eBusd not connected") return

eingefügt werden. Sonst läuft das Plugin nicht.

Außerdem muss in der Datei plugins/ebus/plugin.yaml in Zeile 16 1.5.0 durch 1.5.1 ersetzt werden.

Kann das jemand machen?

z1marco avatar Dec 11 '23 15:12 z1marco