homebridge-frontier-silicon-plugin 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -3
  2. package/README.md +73 -30
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,16 +4,25 @@ All notable changes to this project are documented in this file.
4
4
 
5
5
  The format is based on Keep a Changelog, and this project follows Semantic Versioning.
6
6
 
7
+ ## [1.2.2] – 2025-12-28
8
+
9
+ ### Fixed
10
+ - Fixed station preset switches not turning off previously selected stations.
11
+ - Ensured station switches behave as an exclusive selector (radio-style behavior).
12
+ - Improved internal state handling to keep HomeKit UI in sync when switching stations.
13
+
14
+ ### Improved
15
+ - More robust preset switching logic for Frontier Silicon radios using navigation-based FSAPI.
16
+
17
+
7
18
  ## [1.2.1] – 2025-12-28
8
19
 
9
20
  ### Fixed
10
21
  - Corrected preset numbering by mapping Homebridge presets (1-based) to Frontier Silicon FSAPI keys (0-based).
11
- - Ensured station preset switches behave exclusively (activating one station automatically deactivates the others).
12
22
  - Fixed incorrect preset selection where presets were offset by one position on the radio.
13
23
 
14
24
  ### Improved
15
- - More reliable DAB+ / preset switching on Frontier Silicon radios using navigation-based FSAPI calls.
16
- - Better HomeKit UI consistency when switching between stations.
25
+ - Reliable DAB+ / preset switching using the required navigation-based FSAPI calls.
17
26
 
18
27
  ## [1.2.0] – 2025-12-28
19
28
 
package/README.md CHANGED
@@ -30,49 +30,92 @@ This plugin is designed as a modern replacement for older Frontier Silicon Homeb
30
30
 
31
31
  Most internet radios from brands such as Roberts, Ruark, Revo, Hama and similar use Frontier Silicon firmware and are compatible.
32
32
 
33
- ## Installation
33
+ ## Tested and Compatible Radios
34
+
35
+ This plugin is designed for radios based on the **Frontier Silicon FSAPI (NetRemote API)**.
36
+ It has been tested or is known to work on a wide range of internet and DAB+ radios using this platform.
37
+
38
+ ### Known compatible brands and models (non-exhaustive)
39
+
40
+ **Hama**
41
+ - IR100
42
+ - IR110
43
+ - DIR3100 / DIR3110 series
44
+
45
+ **Medion**
46
+ - MD87180
47
+ - MD86988
48
+ - MD86955
49
+ - MD87528
50
+
51
+ **Roberts**
52
+ - Stream 83i
53
+ - Stream 93i
54
+
55
+ **Ruark**
56
+ - R2
57
+ - R5
34
58
 
35
- Install the plugin globally using npm
59
+ **Revo**
60
+ - SuperConnect
36
61
 
37
- npm install -g homebridge-frontier-silicon-plugin
62
+ **Auna**
63
+ - Connect 150
64
+ - Connect CD
65
+ - KR200
38
66
 
39
- After installation, restart Homebridge.
67
+ **TechniSat**
68
+ - DIGITRADIO 350 IR
69
+ - DIGITRADIO 850
70
+ - VIOLA series
40
71
 
41
- ## Configuration
72
+ **Silvercrest (Lidl)**
73
+ - SMRS18A1
74
+ - SMRS30A1
75
+ - SMRS35A1
76
+ - SIRD series
42
77
 
43
- Add the accessory to your Homebridge configuration.
78
+ **Dual / Teufel**
79
+ - Dual IR 3a
80
+ - Teufel 3sixty
44
81
 
45
- ### Example configuration
82
+ ### Important note
46
83
 
47
- {
48
- "accessory": "frontier-silicon",
49
- "name": "Living Room Radio",
50
- "ip": "192.168.1.50",
51
- "pin": "1234",
52
- "pollIntervalSeconds": 5,
53
- "enableVolume": true
54
- }
84
+ This list is **not complete**.
85
+ Many internet and DAB+ radios use the same Frontier Silicon platform under different brand names.
55
86
 
56
- ## Configuration options
87
+ If your radio responds to the following URL:
88
+
89
+ http://<radio-ip>/fsapi/GET/netRemote.sys.info.friendlyName
90
+
91
+ then it is very likely compatible with this plugin.
92
+
93
+ If you successfully use this plugin with a radio that is not listed above, please consider opening an issue or pull request to help extend this list.
94
+
95
+
96
+ ## Installation
57
97
 
58
- name
59
- Displayed name in HomeKit
98
+ ### Recommended: Install via Homebridge UI
60
99
 
61
- ip
62
- IP address of the radio
100
+ This plugin can be installed and configured entirely through the **Homebridge Config UI X**.
101
+ No manual JSON editing is required.
63
102
 
64
- pin
65
- FSAPI PIN code
66
- Default is 1234 on most devices
103
+ 1. Open the Homebridge UI in your browser
104
+ 2. Go to **Plugins**
105
+ 3. Search for **homebridge-frontier-silicon-plugin**
106
+ 4. Click **Install**
107
+ 5. After installation, go to **Settings → Accessories**
108
+ 6. Add a new accessory and select **Frontier Silicon Radio**
109
+ 7. Fill in the required fields:
110
+ - Name
111
+ - IP address of the radio
112
+ - FSAPI PIN (default is usually `1234`)
113
+ 8. (Optional) Configure volume options and station presets via the UI
114
+ 9. Save the configuration and **restart Homebridge**
67
115
 
68
- pollIntervalSeconds
69
- Polling interval in seconds
70
- Minimum value is 2
71
- Default value is 5
116
+ After the restart, the radio and its controls will appear in the Apple Home app.
72
117
 
73
- enableVolume
74
- Enable volume control
75
- Default is true
118
+ ---
76
119
 
77
120
  ## HomeKit behaviour
78
121
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-frontier-silicon-plugin",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Homebridge plugin for Frontier Silicon FSAPI devices, power and volume with safe polling",
5
5
  "license": "ISC",
6
6
  "main": "index.js",