You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the great work on this binding together with cyrilcc. Unfortunately I have an issue after upgrading to the latest stable release of openhab (2.5.1):
Receiving serial commands works (e.g. commands from my remote get recognized), but it doesn't appear to be sending any serial commands. Issue is similar to what is described here
I readthat between 2.4.0-1 and 2.5.1 some things have changed in the way serial ports are handeled?
For example, the DSMR (Smart meter binding), imports different modules to handle the serial, see DSMRSerialConnector.java as follows:
Could this be causing issues the way the serial ports are connected? And if so, would it be possible to update the code to use the new serial definitions? Would love to help, but I'm not really experienced in creating/modifying bindings...
The text was updated successfully, but these errors were encountered:
Hi!
Thanks for the great work on this binding together with cyrilcc. Unfortunately I have an issue after upgrading to the latest stable release of openhab (2.5.1):
Receiving serial commands works (e.g. commands from my remote get recognized), but it doesn't appear to be sending any serial commands. Issue is similar to what is described here
I readthat between 2.4.0-1 and 2.5.1 some things have changed in the way serial ports are handeled?
For example, the DSMR (Smart meter binding), imports different modules to handle the serial, see DSMRSerialConnector.java as follows:
import org.eclipse.smarthome.io.transport.serial.PortInUseException;
import org.eclipse.smarthome.io.transport.serial.SerialPort;
import org.eclipse.smarthome.io.transport.serial.SerialPortEvent;
import org.eclipse.smarthome.io.transport.serial.SerialPortEventListener;
import org.eclipse.smarthome.io.transport.serial.SerialPortIdentifier;
import org.eclipse.smarthome.io.transport.serial.SerialPortManager;
import org.eclipse.smarthome.io.transport.serial.UnsupportedCommOperationException;_
In the RFlink binding, the RfLinkSerialConnector.java still imports the serial port modules as:
import gnu.io.CommPortIdentifier;
import gnu.io.SerialPort;
import gnu.io.SerialPortEvent;
import gnu.io.SerialPortEventListener;_
Could this be causing issues the way the serial ports are connected? And if so, would it be possible to update the code to use the new serial definitions? Would love to help, but I'm not really experienced in creating/modifying bindings...
The text was updated successfully, but these errors were encountered: