Asterisk Binding

The addon meta information file changed, that was why the plugin wasn’t visible anymore.
I’ve updated it to openHab 4: Asterisk binding for OH4

It works fine here, I hope it works for you too.

1 Like

Thank you. I will try tomorrow and let you know

João

I tried the jar and now the bindings shows up in 4.1 and I can insert parametrs for my asterisk server.
The connection is correct but it seems that my items are not receiving any updates.

I configured these two:

Switch Incoming_Call “Ringing” { asterisk=“active” }
Call Active_Call “Connected to [%s]” { asterisk=“active” }

Is there something wrong?

I mostly configure them via the UI, but it also works with items file, but you do need to add the channels by its id instead of the thing.

In your case I think it should be:
Switch Incoming_Call “Ringing” {channel=“asterisk:Switch” }
Call Active_Call “Connected to [%s]” {channel=“asterisk:Call” }

I just tried and it seems to work.

Thank you