@mdjhnson/homebridge-yoto 0.1.0 → 0.1.2

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.
package/README.md CHANGED
@@ -54,10 +54,10 @@ All options live under **Accessory Services** in the plugin settings.
54
54
 
55
55
  **Playback**
56
56
  - **Playback Controls**: Adds a play/pause switch and a volume dimmer to each player's bridged accessory.
57
- - **External Smart Speaker**: Publishes a separate Smart Speaker accessory for playback and volume.
57
+ - **External Smart Speaker**: Publishes a separate Smart Speaker accessory for Home app scenes and automations (pause, resume, set volume). The Home app shows *"Controls not available"* when you open it, because iOS only offers live controls for AirPlay speakers. It does not make the Yoto an AirPlay target.
58
58
  - **TV Playback Accessory**: Publishes a separate TV-style accessory. Its inputs play your card controls and shortcuts, and you control it with the iOS remote.
59
59
 
60
- External accessories must be added by hand in the Home app (**Add Accessory → More options**) using the setup code in the Homebridge log.
60
+ External accessories must be added by hand in the Home app (**Add Accessory → More options**) using the setup code in the Homebridge log. Each one listens on its own port (logged as `... is running on port N`), so open those ports if Homebridge runs behind a firewall, or set a fixed port range under Homebridge **Settings → Network**.
61
61
 
62
62
  **Card Controls** (`services.cardControls`)
63
63
  - A switch on each player that plays the card ID you configure.
@@ -67,13 +67,13 @@
67
67
  "title": "External Smart Speaker",
68
68
  "type": "boolean",
69
69
  "default": false,
70
- "description": "Publish an external Smart Speaker accessory for playback and volume controls. Requires additional pairing steps and appears as a separate accessory."
70
+ "description": "Publish an external Smart Speaker accessory for use in Home app scenes and automations (pause, resume, set volume). The Home app shows \"Controls not available\" for it; for tap-to-control use Playback Controls or the TV Playback Accessory. Requires pairing and its own network port."
71
71
  },
72
72
  "television": {
73
73
  "title": "TV Playback Accessory",
74
74
  "type": "boolean",
75
75
  "default": false,
76
- "description": "Publish an external playback accessory using the TV service with input and speaker controls. Requires additional pairing steps and appears as a separate accessory."
76
+ "description": "Publish an external TV-style accessory: play/pause and volume from the iPhone remote, and inputs that play your card controls and shortcuts. Requires pairing and its own network port."
77
77
  },
78
78
  "battery": {
79
79
  "title": "Battery",
@@ -188,7 +188,7 @@
188
188
  },
189
189
  {
190
190
  "type": "help",
191
- "helpvalue": "<p><strong>Playback Controls:</strong> Enable a bridged switch + dimmer for play/pause and volume. <strong>External Smart Speaker:</strong> publishes a separate accessory and requires additional pairing steps in the Home app. <strong>TV Playback Accessory:</strong> publishes an external playback accessory with input and speaker controls.</p>"
191
+ "helpvalue": "<p><strong>Playback Controls:</strong> Enable a bridged switch + dimmer for play/pause and volume. <strong>External Smart Speaker:</strong> a separate accessory for scenes and automations only (the Home app shows \"Controls not available\"). <strong>TV Playback Accessory:</strong> a separate accessory controlled with the iPhone remote, with inputs for card controls and shortcuts. External accessories need pairing and each uses its own network port.</p>"
192
192
  },
193
193
  "services.playbackControls",
194
194
  "services.smartSpeaker",
@@ -209,6 +209,7 @@
209
209
  {
210
210
  "key": "services.cardControls",
211
211
  "type": "array",
212
+ "startEmpty": true,
212
213
  "buttonText": "Add Card Control",
213
214
  "items": [
214
215
  "services.cardControls[].label",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mdjhnson/homebridge-yoto",
3
3
  "description": "Control your Yoto players through Apple HomeKit with real-time MQTT updates",
4
- "version": "0.1.0",
4
+ "version": "0.1.2",
5
5
  "author": "mdjhnson (https://github.com/mdjhnson)",
6
6
  "contributors": [
7
7
  "Bret Comnes <bcomnes@gmail.com> (https://bret.io)"