This page is part of archived documentation for openHAB 2.5. Go to the current stable version

# Frontier Silicon Radio Binding v1

This binding is for internet radios based on the Frontier Silicon chipset (opens new window).

This binding has been developed and tested with the Hama IR110 (opens new window) and Medion MD87180 (opens new window) internet radios.

The MEDION® P85040 (MD 86988) (opens new window), MEDION® P85035 (MD 87090) (opens new window), Pinell Supersound II (opens new window), Silvercrest SIRD 14 C1 (opens new window), [Revo Superconnect] (http://revo.co.uk/shop/superconnect/ (opens new window)), [Ruark R2] (http://www.ruarkaudio.com/products/r2-overview (opens new window)), [Technisat DigiRadio 450] (https://www.technisat.com/en_XX/DigitRadio-450/352-10996-9589/ (opens new window)) and the Hama DIR3110 (opens new window) are also supported.

MEDION LIFE P85044 (MD 87180) (opens new window) Hama Internetradio IR110 (opens new window) MEDION LIFE P85040 (MD 86988) (opens new window) Pinell Supersound II (opens new window) Silvercrest SIRD 14 C1 (opens new window) Technisat DigitRadio 450 (opens new window) Revo Superconnect (opens new window)

Ruark R2

You can easily check if your IP radio is supported:

  1. Figure out the IP of your radio (e.g. by looking it up in your router)
  2. Figure out the PIN that is configured for the radio (somewhere hidden in the radio's on-screen menu); or try the default pin 1234
  3. Go to your web browser and enter: http://<IP>/fsapi/CREATE_SESSION?pin=<PIN>
  4. If the response is similar to FS_OK 6836164442, your radio is most likely compatible with this binding
  5. If you radio works with this binding, please add it to the list above by Editing this page!

There is also a binding specifically for openHAB 2 here (opens new window).

# Binding Configuration

This binding can be configured in the services/frontiersiliconradio.cfg file.

Property Default Required Description
radio.host Yes Hostname/IP of the radio to control
radio.pin 1234 No PIN access code of the radio
radio.port 80 No Port number of the radio to control
refreshInterval 60000 No The number of milliseconds between checks of the radio
cachePeriod 0 No Cache the state for cachePeriod minutes so only changes are posted (0 = disabled, 60 = recommended)

# Notes

  • radio is an identifier that can be replaced with your custom identifier, e.g. bedroom or radio-kitchen. This allows to use the binding also for multiple radios.
  • The pin may vary from radio to radio, you can typically look it up in the radio settings.
  • refreshInterval and cachePeriod are global settings that apply to all radios.

# Item Configuration

There are different types of item bindings, all of them are qualified with the device's identifier used in the binding configuration:

frontiersiliconradio="<identifier>:<property>"

Example for the power state of a device with identifier radio:

Switch RadioPower "Radio Power" { frontiersiliconradio="radio:POWER" }

A list of all properties and their possible item types is given below:

item item type purpose changeable
POWER Switch power state yes
MODE Number radio mode (details about mapping below) yes
VOLUME Number volume yes
MUTE Swtich mute yes
PLAYINFONAME String title of current playback, e.g. radio station no
PLAYINFOTEXT String additional information, e.g. current song no
PRESET Number select preset, e.g. configured radio stations yes

The radio mode property is just a number that specifies the radio mode which may differ for each radio. This is why there is no fixed mapping implemented. For radios listed above, the mapping is as follows (please add your radio mapping (opens new window), if it differs!):

radio mode Hama IR110 Medion MD 87180/87090 Medion MD 86988 Pinell Supersound II Silvercrest SIRD 14 C1 Revo Superconnect Hama DIR3110
0 Internet Radio Internet Radio Internet Radio Internet Radio Internet Radio Internet Radio Internet Radio
1 Spotify Music Player (USB, LAN) Music Player Spotify Spotify Spotify Spotify
2 Player DAB Radio FM Radio Player --- --- Player
3 AUX in FM Radio AUX in DAB Radio Music Player Music Player DAB Radio
4 - AUX in - FM Radio DAB Radio DAB Radio FM Radio
5 - - - AUX in FM Radio FM Radio AUX in
6 - - - - AUX in AUX in -
7 - - - - - Bluetooth -

# Example

# Items

Switch RadioPower         "Radio Power" (gRadio) { frontiersiliconradio="radio:POWER" }
Number RadioMode          "Radio Mode [%d]" (gRadio) { frontiersiliconradio="radio:MODE" }
Switch RadioMute          "Radio Mute" (gRadio) { frontiersiliconradio="radio:MUTE" } 
Number RadioVolDimmer     "Radio Volume [%d %%]" (gRadio) { frontiersiliconradio="radio:VOLUME" } 
String RadioPlayInfoName  "Play Info Name [%s]" (gRadio) { frontiersiliconradio="radio:PLAYINFONAME" }
String RadioPlayInfoText  "Play Info Text [%s]" (gRadio) { frontiersiliconradio="radio:PLAYINFOTEXT" }
Number RadioPreset        "Preset" (gRadio) { frontiersiliconradio="radio:PRESET" }

# Sitemap

Presets and mode are radio-specific, this is why their mapping is specified here.

Frame label="Radio Control" {
    Switch     item=RadioPower
    Selection  visibility=[RadioPower==ON] item=RadioPreset mappings=[0="1Live", 1="WDR2", 2="SWR3"]
    Selection  visibility=[RadioPower==ON] item=RadioMode   mappings=[0="Internet Radio", 1="Spotify", 2="Player", 3="AUX IN"]
    Slider     visibility=[RadioPower==ON] item=RadioVolDimmer
    Switch     visibility=[RadioPower==ON] item=RadioMute
    Text       visibility=[RadioPower==ON] item=RadioPlayInfoName
    Text       visibility=[RadioPower==ON] item=RadioPlayInfoText
}

# Developer Info

If you would like to extend this binding and contribute further functionality, here is some technical information about it. The communication with the radio is realized via simple HTTP requests. Unfortunately, there is no official documentation of the API for the frontier silicon chipset, but there are some sources around the internet (flammy/fsapi on github (opens new window), for example). Until now, only the following requests are implemented:

If you like to add further actions, have a look at FrontierSiliconRadio.java (opens new window).