Re: Logitech Media Server
Posted: Monday 05 October 2015 20:06
Will test the Boom!
Will look into that. Thanx for reporting!pvm wrote:I got a new modem and reconfigured my home network. The squeezebox got a new network address resulting in a second device (in the switches screen). I tried removing it, that works fine.
In the hardware screen however, I still see 2 devices, how can I clean that up? Is it possible to not create a new device when the mac address stays the same?
Hi, is there some particular reason for not adding Duet (receiver) and controller - and possibly also iPengiPod?Eduard wrote: I just created a pull-request with support for Boom & SqueezePlay. Should be available in next beta...
They were already supported in a previous betaNautilus wrote:Hi, is there some particular reason for not adding Duet (receiver) and controller
Fixed! Should be available in new beta...pvm wrote:I got a new modem and reconfigured my home network. The squeezebox got a new network address resulting in a second device (in the switches screen). I tried removing it, that works fine.
In the hardware screen however, I still see 2 devices, how can I clean that up? Is it possible to not create a new device when the mac address stays the same?
Thnx, removed the hardware, readded and back to one device againEduard wrote:Fixed! Should be available in new beta...pvm wrote:I got a new modem and reconfigured my home network. The squeezebox got a new network address resulting in a second device (in the switches screen). I tried removing it, that works fine.
In the hardware screen however, I still see 2 devices, how can I clean that up? Is it possible to not create a new device when the mac address stays the same?
PS.: Still have to delete hardware and add again to get rid of the duplicate player for now. In new version it won't add a new player if the IP or Name changes...
Awesome, works great so far!Eduard wrote:They were already supported in a previous betaNautilus wrote:Hi, is there some particular reason for not adding Duet (receiver) and controller
Code: Select all
cd ~/dev-domoticz
git pull
make
See previous postmschut wrote:About notifications: I notice the notifications "on" and "off" are the only ones which work for me, and also only if I turn on/off in Domoticz, not by the device itself. Would be great if it would also work on the devices self, including the "play" option.
No, not yet. After good test result i will make a pull-request within a few days...mschut wrote:Also available in the Pi beta version (now V2.3267)?
In my case you didn't even have to change status of a switch, just had to wait some time. Then other switches started to show the music being played as their status.Eduard wrote:Found it! Fixed in new beta...Eduard wrote:The domotcz/master version has one bug which i'm not able to fix right now:
After switching on a player and play a song, the device shows artist & title as expected. But if i switch a normal switch, the status of this switch also shows the same artist & title![]()
Also enabled support for Controller & Receiver. Please let me know if it works for those devices...
If so, you can try this script (called lms_play_fav.sh) i have made:Immo wrote:I am trying to figure out the url to start playing a radiostation from the lms-list on a certain player.
Getting the player to play is no problem from a url, but switching to a certain station I can't get to work.
The idea is to have a virtual switch to start playing a channel on one of my squeezeboxes..
Code: Select all
#!/bin/bash
SB_SERVER=<LMS_SERVER_IP>
SB_PORT=<LMS_SERVER_CLI_PORT>
LMS_FAV_ID=`echo "$1 favorites items 0 1000" | nc -q 2 $SB_SERVER $SB_PORT | sed 's/%3A/:/g' | sed 's/ id:/\'$'\n/g' | grep -i "$2 " | cut -d '.' -f2 | cut -d ' ' -f1 | head -n 1`
PLAY=`echo "$1 favorites playlist play item_id:$LMS_FAV_ID" | nc -q 2 $SB_SERVER $SB_PORT`
Code: Select all
script:///home/pi/domoticz/scripts/lms_play_fav.sh <LMS_PLAYER_NAME> <NAME_OF_FAVORITE>
It's because the plug-in uses an interval to 'pull' the status of the players. By default this interval is 30 seconds. You can change this in rhe hardware-srtting of the LMS.cyberclwn wrote:btw, it is on purpose the status of the device changes from "Aan" (On) to "Audio" after a 20-30 seconds ?