Control and monitor SONOS devices with ioBroker.
- States for handling SONOS groups:
coordinator: set/get the coordinator, so the SONOS device which is the master and coordinating the group. It requires the IP address (channel name) of the SONOS device to be the coordinator, but with underscore_instead of dot., so use for example192_168_0_100for IP address192.168.0.100. If the device does not belong to any group, then the value is equal to the own channel name (IP).group_volume: the volume of the groupgroup_muted: mute status of the group.add_to_group: Add a certain SONOS device to the SONOS device under which this state is. Use IP address with underscores (see above).remove_from_group: Remove a certain SONOS device from the SONOS device under which this state is. Use IP address with underscores (see above).
*) These states will be updated if changes are made in the SONOS app.
To use the sayit adapter with this SONOS adapter, ensure that the web adapter is instantiated and running too. The web adapter is required to allow the SONOS adapter to read the generated MP3 file from the sayit adapter.
Please note: This SONOS adapter has stability issues if using 'text to speech' with the sayIt adapter. Symptoms observed:
- Arbitrary change of volume to 0 or 100 %.
- No response after a random number of text to speech sequences
Workaround for text to speech is to use the SONOS HTTP API.
Use states favorites_list_html and queue_html to show playlists and current queue with basic html widget in VIS. By clicking on a row, the playlist or track will be played immediately.
Format the table with the following css classes:
sonosFavoriteTable: hole favorite tablesonosFavoriteRow: rows with favorite informationsonosFavoriteNumber: Number of favoritessonosFavoriteCover: Album art of favorite (grab image with.sonosFavoriteCover img)sonosFavoriteTitle: Name of favorite
.sonosQueueTable: hole table.sonosQueueRow: rows containing track information.currentTrack: added to the row containg the current playing track.sonosQueueTrackNumber: Number or track.sonosQueueTrackCover: Album art of track (grab image with.sonosQueueTrackCover img).sonosQueueTrackArtist: Name of artist.sonosQueueTrackAlbum: Name of album (usedisplay:noneif not needed).sonosQueueTrackTitle: Name of title
For long lists add overflow:auto; or overflow-y:auto; to basic html widget.
Please note: highlighting current playing favorite is not supported.
.sonosFavoriteTable {
color: #bbb;
font-size: 12px;
}
.sonosFavoriteRow {
cursor: pointer;
}
.sonosFavoriteNumber {}
.sonosFavoriteCover img {
width: 30px;
height: 30px;
}
.sonosFavoriteTitle {}
.sonosQueueTable {
color: #bbb;
font-size: 12px;
}
.sonosQueueRow {
display: table-row;
cursor: pointer;
}
.sonosQueueRow.currentTrack {
color: #fff;
font-weight: bold;
}
.sonosQueueTrackNumber {}
.sonosQueueTrackCover img {
width: 30px;
height: 30px;
display: table-column;
}
.sonosQueueTrackArtist {
display: table-row;
}
.sonosQueueTrackAlbum {
display: none;
}
.sonosQueueTrackTitle {
display: table-row;
}
- Rewrite with https://github.com/svrooij/node-sonos-ts
- Web server - [optional] If web server enabled or not
- Update of elapsed time(ms) - Interval in ms how often to update elapsed timer when the title is playing. (Default 2000)
- (@GermanBluefox) Fixed TTS: without a volume in the file name, the announcement was played with volume 0
- (@GermanBluefox) Fixed the immediate stop of TTS: the state before TTS was not restored and TTS stayed blocked
- (@GermanBluefox) A muted player is unmuted now for the announcement and muted again afterwards
- (@GermanBluefox) An empty value in the
ttsstate stops the running announcement - (@GermanBluefox) The adapter was migrated to TypeScript and is now based on classes
- (@GermanBluefox) The "root" device object is created now by js-controller from io-package.json
- (biglouis) Missing states of the already existing devices will be created at start
- (VierlingMt) Fixed the error if
favorites_setwas called with an empty value - (seb2010) Added support for treble and bass information
- (Apollon77) stores the tts files in files instead of binary states
- (udondan) Added support for the playing Sonos playlists (added new state
playlist_set) - (bluefox) The minimal node.js version is 16
- (foxriver76) fixed cover url
- (foxriver76) stores the cover file in files instead of binary states
- (Apollon77) Prepare for future js-controller versions
The MIT License (MIT)
Copyright (c) 2014-2026, bluefox dogafox@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
