Hi @Rickytr,
So big cavat here - technically 4.3 is the first version this is supported on, as its built specifically against that revision. That being said, my non development main system is also running 4.2.2. I’m pretty sure mdns updated in 4.3, so you will likely have to use a static ip, and set the linktap device to a static ip address (which is what I recommend in the docs), then I suspect it may work. (mdns allows the system to detect if people don’t following the static recommendations for the binding to attempt to auto recover based on mdns data).
If you download the snapshot of the bundles file, if in windows for example you can rename it from .kar to .zip. At this path in the zip file you’re find the jar of the build. repository\org\openhab\addons\bundles\org.openhab.binding.linktap\4.3.0-SNAPSHOT
The jar file inside this directory would need to go in your openhab installations add-on’s directory.
Normally if you use the standard system of installation it will ensure you have the extra dependencies that it requires. Installing it manually you’ll need ensure that you have them. It requires jsoup 1.15.4, so one way to install this is to use the console of openhab to install it with the command:
bundle:install https://repo1.maven.org/maven2/org/jsoup/jsoup/1.15.4/jsoup-1.15.4.jar
The console will then give you a bundle ID.so if it said on my computer Bundle ID: 267 after the above then id next run:
bundle:start 267
After the dependency is met the bundle should start. If you run
bundle:list
On the test installation I just did it appeared to accept the bundle and start it given the with the dependency found, as out of the many lines in the output are these two, which are required for it.
ID │ State │ Lvl │ Version │ Name
────┼────────┼─────┼───────────────────────┼───────────────────────────────────────────────────────────────────────────
267 │ Active │ 80 │ 1.15.4 │ jsoup Java HTML Parser
147 │ Active │ 80 │ 4.3.0.202410090359 │ openHAB Add-ons :: Bundles :: LinkTap Binding
After this I would suggest restarting openhab, so it has a clean boot with everything installed from startup.
Again however this isn’t recommended, but may be enough for you to “test” it out. As soon as my system pulls a stable openhab 4.3 build, I plan on removing my development build jar and re-installing from the standard add-ons channel.
Hopefully the above works for you.
David