title | component | label | description | source | prev |
---|---|---|---|---|---|
oh-sipclient - SIP Client |
oh-sipclient |
SIP Client |
Use SIP over WebSocket to start and answer calls |
/docs/ui/components/ |
SIP Client to start and answer SIP calls
[[toc]]
The oh-sipclient
component allows to call and answer SIP calls using the JsSIP library.
The color of the call icon depends on the state of the connection to the SIP server:
- yellow: no connection yet, but
oh-sipclient
tries to establish the connection - green: successfully connected to the SIP server, ready to perform calls
When the call button is green, a tap on it either directly starts a call or opens a popup to choose from the phonebook
property.
As soon as you start an outgoing call, a hangup button will be displayed.
The hangup button is coloured yellow, if the call has not been accepted yet.
If the call has been accepted, the hangup button will become red.
When a call is coming in, a green accept and a red decline button are displayed.
If the call is accepted, a red hangup button is accepted.
The number or the name (looked up in the phonebook
property) of the caller is displayed between these two buttons, but this called id can be hidden.
oh-sipclient
also supports video calling, playing ringtone as well as ringback sounds and performing DTMF operations, e.g. for doorstations to open the door.
This configuration is standard widget configuration and stored on the openHAB server, it is therefore shared across all clients.
It is even possible to establish an intercom functionality between multiple MainUI clients, e.g. between several wall-mounted tablets across your house.
To use the intercom functionality, it is required that each client gets his own SIP account configured.
This can be achieved by configuring the widget as usual, but setting SIP username & password in the Local SIP Account Settings
:
- Open the UI page with the
oh-sipclient
on the individual client. - Enter
Edit
mode. oh-sipclient
will show a button namesLocal SIP Account Settings
in the upper right corner.- Insert your SIP account credentials, they are used instead of those stored on the openHAB server.
- Insert the SIP address/phone number of your SIP account, it is used to hide your local identity from the call dial.
The advanced sipStateItem
property allows to define a String Item to publish the current SIP connection state to the openHAB server.
There are the following basic states:
connected
: The SIP client has connected to the SIP server and ready to make outgoing calls.registered
: The SIP client has registered at the SIP server and ready to receive calls.disconnected
: The SIP client has disconnected from the SIP server.
In addition, there are the following call states, which provide the caller ID of the remote party, e.g. **[email protected]
after a colon:
incoming
: An incoming call is received, e.g.incoming:**[email protected]
.incoming-accepted
: An incoming call has been accepted and is now active, e.g.incoming-accepted:**[email protected]
.outgoing
: An outgoing call is started.outgoing-accepted
: An outgoing call has been accepted and is now active.ended
: The call has been ended.failed
: The call has failed.
The sipStateItem
is useful to track the SIP connection state on the openHAB server and work with it, e.g. in rules.
wss://siphost:8089/ws
or relative path, e.g. /ws
, for Android & iOS, you need wss
(WebSocket secured)
Enable ringback and ring tone. Not recommended for mobile browsers, might cause issues. Ring tone might only work after interaction with the webpage.
Single SIP Address (phone number) for a single call target or a comma-separated list of phoneNumber=name
for multiple call targets. Used as well to display a name instead of the number for incoming calls.
Display a button to send a preset DTMF string while in calls for remote doors, gates, etc...
Hides the username of the remote party for incoming calls.
Enable video calling
Display the local camera on video calls
Default video aspect ratio used to size the widget before video is loaded. Defaults to 4/3, 16/9 and 1 are common alternatives.
SIP registration can be disabled in case you only want to initiate calls, but not receive calls with the SIP widgets.
Automatically answer an incoming call from one of the comma delimited SIP addresses (userInfo@hostname
, userInfo
, ...) or use * for all incoming calls.
Automatically dial the SIP address when loaded
String Item to publish the current SIP connection state to the openHAB server and make it accessible from rules etc.
Enable SIP debugging to the browser console (dev tools)
The iconSize
property is forwarded to the icon-size
property and the CSS height
attribute of the f7-button
.
The defaultVideoAspectRatio
property is forwarded to the CSS aspect-ratio
attribute of the video-container
class.