Plugin-Daten | |
---|---|
Autor | Aleš Berka (Aleq) |
Logo | ![]() |
Status | BETA |
Version | 0.2.31 |
Min. LB Version | 1.2.2 |
Release Download | http://aleq.eu/chromecast4lox/chromecast-4lox-plugin-0.2.31.zip |
Beschreibung | Basic Chromecast (audio) control for Loxone |
Sprachen | EN |
Diskussion | https://www.loxforum.com/forum/projektforen/loxberry/plugins/174244-chromecast-control-early-access-english |
Latest version here: http://aleq.eu/chromecast4lox/
Requires LoxBerry 1.2.2+ (briefly tested to work with 2.2)
Plugin contains a server, which listens for UDP commands coming from Loxone Miniserver, performs desired actions on Chromecast and replies results back to Loxone via another UDP transmission.
Supported Chromecast actions:
Plugin needs to be configured first. You need to set:
To control Chromecast:
To receive replies from plugin (OPTIONAL, simple version):
You can use the UDP monitor (feature of Loxone Config) to explore the replies
You can send multiple commands at once, separated by semicolon ( ; ). Replies always start with asterisk ( * ) and end with semicolon ( ; ). There is no escaping at the moment
Checks the Chromecast status. Returns free text returned from builtin Chromecast controlling utility prefixed by "STATUS:\n" and ended by ";"
Sample response:
*STATUS:
Connecting to 192.168.1.51:8009...
Connected
[Default Media Receiver] Default Media Receiver
Volume: 0.41
;
Queries Chromecast volume, which is returned as integer value 0-100, prefixed by "*GET_VOLUME_ACK " (including the space) and ended by ";"
Possible responses are:
*GET_VOLUME_ACK
number; (if succeeded)
*GET_VOLUME_NACK;
(if failed, for instance Chromecast was not reachable, in case of network issues, etc. For details check Log)
Sample response:
*GET_VOLUME 41;
Sets the new volume level. Command format "SET_VOLUME
number" where number is the volume level, integer, 0-100.
Possible responses are:
*SET_VOLUME_ACK
number;
(if succeeded)
*SET_VOLUME_NACK;
(if failed, for instance Chromecast was not reachable, in case of network issues, etc. For details check Log)
Adjusts the new volume level by defined difference (positive or negative for volume increase or decrease). Command format "ADJUST_VOLUME
delta" where delta is the volume difference, integer, -100..100, to be added to the current volume level. The purpose of this function is accommodate volume up and volume down operations.
Possible responses are:
*ADJUST_VOLUME_ACK
number;
(if succeeded; number represents the resulting (new) absolute volume level)
*ADJUST_VOLUME_NACK;
(if failed, for instance Chromecast was not reachable, in case of network issues, etc. For details check Log)
Sample command:
ADJUST_VOLUME -10;
Sample response (from a Chromecast having a volume level 65 before the command was processed):
*ADJUST_VOLUME_ACK 55;
Plays (casts) remote stream (defined by URL) on Chromecast. Supported formats rely completely on Chromecast, LoxBerry plugin passes just the URL. Command format "PLAY
url" where url is the address of the stream. From the Chromecast Help, Chromecast Audio supports: HE-AAC, LC-AAC, MP3, Vorbis, WAV (LPCM), Opus, FLAC with support for high-resolution streams (24-bit/96KHz).
Possible responses are:
*PLAY_ACK
url;
(if succeeded)
*PLAY_NACK;
(if failed, for instance Chromecast was not reachable, in case of network issues, etc. For details check Log)
Sample command:
PLAY http://amp.cesnet.cz:8000/cro1-256.ogg;
Sample response:
*PLAY_ACK http://amp.cesnet.cz:8000/cro1-256.ogg;
Pauses Chromecast playback.
Possible responses are:
*PAUSE_ACK
;
(if succeeded)
*PAUSE_NACK;
(if failed, for instance Chromecast was not reachable, in case of network issues, etc. For details check Log)
Stops Chromecast playback.
Possible responses are:
*STOP_ACK
;
(if succeeded)
*STOP_NACK;
(if failed, for instance Chromecast was not reachable, in case of network issues, etc. For details check Log)
Closes current app on Chromecast
Possible responses are:
*QUIT_ACK
;
(if succeeded)
*QUIT_NACK;
(if failed, for instance Chromecast was not reachable, in case of network issues, etc. For details check Log)
Periodic check of volume (if configured) sends "*VOLUME
number;
" messages to Loxone upon volume change, where number is the new volume level, integer, 0-100.
Sample message sent to Loxone Miniserver:
*VOLUME 5;
Chromecast connection status is reported (if changes) after each communication with the device. Offline message is repeated after each failed attempt. Periodic repeating of the message can be configured on top of this. It is important to understand the status reporting period is dependent on any action on Chromecast. Without it will not report anything, ie. it is recommended to have Periodic volume notification enabled (and the Period of volume notifications should be less or equal to Connection status reporting period).
Messages sent to Loxone Miniserver:
*STATUS_ONLINE;
*STATUS_OFFLINE;
Sample message sent to Loxone Miniserver:
*STATUS_ONLINE;
To be considered: