UNPKG

node-red-contrib-musiccast

Version:

A Node-RED collection for monitoring and controlling a Yamaha Musiccast network.

807 lines 20.5 kB
[ { "id": "f62ce4650c929e96", "type": "tab", "label": "Musiccast Dashboard", "disabled": false, "info": "This example flow provides the display and basic playback and volume control functions. The collection \"node-red-dashboard\" must also be added to the palette before this flow will work.\n\nTo configure this flow, open the configuration [Example] and update the IP address of the \"Living Room\" device to match your main Musiccast device. \n\nAfter saving the configuration and deployment, the dashboard should now have a new tab called \"Musiccast\".", "env": [] }, { "id": "29d42ec89c5b414d", "type": "inject", "z": "f62ce4650c929e96", "name": "Update", "props": [ { "p": "payload" } ], "repeat": "2", "crontab": "", "once": true, "onceDelay": "0.5", "topic": "", "payload": "{}", "payloadType": "json", "x": 120, "y": 40, "wires": [ [ "0424a44672ca85f6", "0612c66e72d4e07e" ] ] }, { "id": "b77df47a73f71b38", "type": "ui_button", "z": "f62ce4650c929e96", "name": "Up", "group": "caba71bdf72b74ca", "order": 7, "width": "2", "height": "1", "passthru": false, "label": "", "tooltip": "Volume up", "color": "", "bgcolor": "#A6BBCF", "className": "", "icon": "fa-volume-up fa-2x", "payload": "{\"volume\":\"up\",\"step\":\"2\"}", "payloadType": "json", "topic": "", "topicType": "str", "x": 930, "y": 380, "wires": [ [ "89b4edcc33a13355" ] ] }, { "id": "87bb7cbdf0b726a9", "type": "ui_button", "z": "f62ce4650c929e96", "name": "Down", "group": "caba71bdf72b74ca", "order": 5, "width": "2", "height": "1", "passthru": false, "label": "", "tooltip": "Volume down", "color": "", "bgcolor": "#A6BBCF", "className": "", "icon": "fa-volume-down fa-2x", "payload": "{\"volume\":\"down\",\"step\":\"2\"}", "payloadType": "json", "topic": "", "topicType": "str", "x": 930, "y": 420, "wires": [ [ "89b4edcc33a13355" ] ] }, { "id": "5c14f489753db217", "type": "ui_switch", "z": "f62ce4650c929e96", "name": "Mute", "label": "", "tooltip": "", "group": "caba71bdf72b74ca", "order": 6, "width": "2", "height": "1", "passthru": false, "decouple": "true", "topic": "", "topicType": "str", "style": "", "onvalue": "{\"enable\":true}", "onvalueType": "json", "onicon": "fa-volume-off fa-2x", "oncolor": "#C0C0C0", "offvalue": "{\"enable\":false}", "offvalueType": "json", "officon": "fa-volume-off fa-2x", "offcolor": "black", "animate": true, "className": "", "x": 930, "y": 40, "wires": [ [ "e91415a77c8de349" ] ] }, { "id": "50271f5b75f125ff", "type": "ui_button", "z": "f62ce4650c929e96", "name": "Previous", "group": "caba71bdf72b74ca", "order": 8, "width": "2", "height": "1", "passthru": false, "label": "", "tooltip": "Back", "color": "", "bgcolor": "#87A980", "className": "", "icon": "fa-step-backward fa-2x", "payload": "{ \"playback\": \"previous\" }", "payloadType": "json", "topic": "", "topicType": "str", "x": 940, "y": 340, "wires": [ [ "71996f0382e82d86" ] ] }, { "id": "34b049908e195ede", "type": "ui_button", "z": "f62ce4650c929e96", "name": "Next", "group": "caba71bdf72b74ca", "order": 10, "width": "2", "height": "1", "passthru": false, "label": "", "tooltip": "Next", "color": "", "bgcolor": "#87A980", "className": "", "icon": "fa-step-forward fa-2x", "payload": "{ \"playback\": \"next\" }", "payloadType": "json", "topic": "", "topicType": "str", "x": 930, "y": 300, "wires": [ [ "71996f0382e82d86" ] ] }, { "id": "25c59c89c3254388", "type": "change", "z": "f62ce4650c929e96", "name": "set vol", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "payload.volume", "tot": "msg" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 550, "y": 80, "wires": [ [ "e828079ea3a2a6cc" ] ] }, { "id": "eb20a36796d9721e", "type": "change", "z": "f62ce4650c929e96", "name": "set mute", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "payload.mute", "tot": "msg" }, { "t": "change", "p": "payload", "pt": "msg", "from": "true", "fromt": "bool", "to": "{\"enable\":true}", "tot": "json" }, { "t": "change", "p": "payload", "pt": "msg", "from": "false", "fromt": "bool", "to": "{\"enable\":false}", "tot": "json" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 560, "y": 40, "wires": [ [ "a10dfc85166234cd" ] ] }, { "id": "ea095edf6e27ed0f", "type": "change", "z": "f62ce4650c929e96", "name": "set playback", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "payload.playback", "tot": "msg" }, { "t": "change", "p": "payload", "pt": "msg", "from": "play", "fromt": "str", "to": "{\"playback\":\"play\"}", "tot": "json" }, { "t": "change", "p": "payload", "pt": "msg", "from": "pause", "fromt": "str", "to": "{\"playback\":\"pause\"}", "tot": "json" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 570, "y": 260, "wires": [ [ "9c5f87e3512f61dd" ] ] }, { "id": "95e6f561f8405913", "type": "ui_switch", "z": "f62ce4650c929e96", "name": "Playback", "label": "", "tooltip": "Toggle play", "group": "caba71bdf72b74ca", "order": 9, "width": "2", "height": "1", "passthru": false, "decouple": "true", "topic": "", "topicType": "str", "style": "", "onvalue": "{\"playback\":\"play\"}", "onvalueType": "json", "onicon": "fa-play fa-2x", "oncolor": "black", "offvalue": "{\"playback\":\"pause\"}", "offvalueType": "json", "officon": "fa-play fa-2x", "offcolor": "#C0C0C0", "animate": true, "className": "", "x": 940, "y": 260, "wires": [ [ "71996f0382e82d86" ] ] }, { "id": "70651b019e3255c7", "type": "ui_text", "z": "f62ce4650c929e96", "group": "caba71bdf72b74ca", "order": 2, "width": "6", "height": "1", "name": "Artist", "label": "", "format": "{{msg.payload | limitTo:100}}", "layout": "row-center", "className": "", "x": 930, "y": 180, "wires": [] }, { "id": "725b01e9cc43e668", "type": "ui_text", "z": "f62ce4650c929e96", "group": "caba71bdf72b74ca", "order": 1, "width": "6", "height": "1", "name": "Track", "label": "", "format": "{{msg.payload | limitTo:100}}", "layout": "row-center", "className": "", "x": 930, "y": 220, "wires": [] }, { "id": "75e8587f1e1fe91b", "type": "change", "z": "f62ce4650c929e96", "name": "set artist", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "payload.artist", "tot": "msg" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 560, "y": 180, "wires": [ [ "06948b6429fdb092" ] ] }, { "id": "ce187f527a76fda0", "type": "change", "z": "f62ce4650c929e96", "name": "set track", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "payload.track", "tot": "msg" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 560, "y": 220, "wires": [ [ "4ec75752847e4f69" ] ] }, { "id": "931d686564a9e913", "type": "change", "z": "f62ce4650c929e96", "name": "set album", "rules": [ { "t": "set", "p": "payload", "pt": "msg", "to": "payload.album", "tot": "msg" } ], "action": "", "property": "", "from": "", "to": "", "reg": false, "x": 560, "y": 140, "wires": [ [ "3a4c96ee02121598" ] ] }, { "id": "e696c3050ddc45f7", "type": "ui_gauge", "z": "f62ce4650c929e96", "name": "Volume", "group": "caba71bdf72b74ca", "order": 4, "width": "0", "height": "0", "gtype": "gage", "title": "", "label": "", "format": "{{msg.payload}}", "min": 0, "max": "161", "colors": [ "#00b500", "#e6e600", "#ca3838" ], "seg1": "130", "seg2": "150", "className": "", "x": 940, "y": 80, "wires": [] }, { "id": "e91415a77c8de349", "type": "musiccast-zone", "z": "f62ce4650c929e96", "mc": "84646cc8.5bcdc", "name": "", "device": "cc796d12-2dd6-49db-9c09-1e971208ea9e", "type_device": "device", "zone": "main", "type_zone": "zone", "command": "setMute", "type_command": "command", "payload": "", "type_payload": "msg", "f_show_status": false, "x": 1120, "y": 40, "wires": [ [] ] }, { "id": "89b4edcc33a13355", "type": "musiccast-zone", "z": "f62ce4650c929e96", "mc": "84646cc8.5bcdc", "name": "", "device": "cc796d12-2dd6-49db-9c09-1e971208ea9e", "type_device": "device", "zone": "main", "type_zone": "zone", "command": "setVolume", "type_command": "command", "payload": "", "type_payload": "msg", "f_show_status": false, "x": 1130, "y": 380, "wires": [ [] ] }, { "id": "71996f0382e82d86", "type": "musiccast-input", "z": "f62ce4650c929e96", "mc": "84646cc8.5bcdc", "name": "", "device": "cc796d12-2dd6-49db-9c09-1e971208ea9e", "type_device": "device", "inp": "server", "type_inp": "input", "command": "setPlayback", "type_command": "command", "payload": "", "type_payload": "msg", "f_show_status": false, "x": 1130, "y": 260, "wires": [ [] ] }, { "id": "b283faaf86cd2e65", "type": "ui_text", "z": "f62ce4650c929e96", "group": "caba71bdf72b74ca", "order": 3, "width": "6", "height": "1", "name": "Album", "label": "", "format": "{{msg.payload | limitTo:100}}", "layout": "row-center", "className": "", "x": 930, "y": 140, "wires": [] }, { "id": "e828079ea3a2a6cc", "type": "rbe", "z": "f62ce4650c929e96", "name": "Did change?", "func": "rbe", "gap": "", "start": "", "inout": "out", "septopics": true, "property": "payload", "topi": "topic", "x": 750, "y": 80, "wires": [ [ "e696c3050ddc45f7" ] ] }, { "id": "a10dfc85166234cd", "type": "rbe", "z": "f62ce4650c929e96", "name": "Did change?", "func": "rbe", "gap": "", "start": "", "inout": "out", "septopics": true, "property": "payload", "topi": "topic", "x": 750, "y": 40, "wires": [ [ "5c14f489753db217" ] ] }, { "id": "9c5f87e3512f61dd", "type": "rbe", "z": "f62ce4650c929e96", "name": "Did change?", "func": "rbe", "gap": "", "start": "", "inout": "out", "septopics": true, "property": "payload", "topi": "topic", "x": 750, "y": 260, "wires": [ [ "95e6f561f8405913" ] ] }, { "id": "06948b6429fdb092", "type": "rbe", "z": "f62ce4650c929e96", "name": "Did change?", "func": "rbe", "gap": "", "start": "", "inout": "out", "septopics": true, "property": "payload", "topi": "topic", "x": 750, "y": 180, "wires": [ [ "70651b019e3255c7" ] ] }, { "id": "3a4c96ee02121598", "type": "rbe", "z": "f62ce4650c929e96", "name": "Did change?", "func": "rbe", "gap": "", "start": "", "inout": "out", "septopics": true, "property": "payload", "topi": "topic", "x": 750, "y": 140, "wires": [ [ "b283faaf86cd2e65" ] ] }, { "id": "4ec75752847e4f69", "type": "rbe", "z": "f62ce4650c929e96", "name": "Did change?", "func": "rbe", "gap": "", "start": "", "inout": "out", "septopics": true, "property": "payload", "topi": "topic", "x": 750, "y": 220, "wires": [ [ "725b01e9cc43e668" ] ] }, { "id": "0424a44672ca85f6", "type": "musiccast-input", "z": "f62ce4650c929e96", "mc": "84646cc8.5bcdc", "name": "Get play info", "device": "cc796d12-2dd6-49db-9c09-1e971208ea9e", "type_device": "device", "inp": "server", "type_inp": "input", "command": "getPlayInfo", "type_command": "command", "payload": "{}", "type_payload": "json", "f_show_status": false, "x": 310, "y": 140, "wires": [ [ "931d686564a9e913", "75e8587f1e1fe91b", "ce187f527a76fda0", "ea095edf6e27ed0f" ] ] }, { "id": "0612c66e72d4e07e", "type": "musiccast-zone", "z": "f62ce4650c929e96", "mc": "84646cc8.5bcdc", "name": "Get zone status", "device": "cc796d12-2dd6-49db-9c09-1e971208ea9e", "type_device": "device", "zone": "main", "type_zone": "zone", "command": "getStatus", "type_command": "command", "payload": "{}", "type_payload": "json", "f_show_status": false, "x": 320, "y": 40, "wires": [ [ "eb20a36796d9721e", "25c59c89c3254388" ] ] }, { "id": "caba71bdf72b74ca", "type": "ui_group", "name": "Control", "tab": "dd6765be68d9b580", "order": 2, "disp": false, "width": "6", "collapse": false, "className": "" }, { "id": "84646cc8.5bcdc", "type": "musiccast-config", "name": "Example Configuration", "device_list": { "cc796d12-2dd6-49db-9c09-1e971208ea9e": { "name": "Living Room Audio", "address": "192.168.10.90", "model": "RX-A2070", "input_list": "{\"napster\":{\"id\":\"napster\"},\"siriusxm\":{\"id\":\"siriusxm\"},\"pandora\":{\"id\":\"pandora\"},\"spotify\":{\"id\":\"spotify\"},\"tidal\":{\"id\":\"tidal\"},\"deezer\":{\"id\":\"deezer\"},\"airplay\":{\"id\":\"airplay\"},\"mc_link\":{\"id\":\"mc_link\"},\"server\":{\"id\":\"server\"},\"net_radio\":{\"id\":\"net_radio\"},\"bluetooth\":{\"id\":\"bluetooth\"},\"usb\":{\"id\":\"usb\"},\"tuner\":{\"id\":\"tuner\"},\"av1\":{\"id\":\"av1\"},\"av2\":{\"id\":\"av2\"},\"av3\":{\"id\":\"av3\"},\"av4\":{\"id\":\"av4\"},\"av5\":{\"id\":\"av5\"},\"av6\":{\"id\":\"av6\"},\"av7\":{\"id\":\"av7\"},\"audio1\":{\"id\":\"audio1\"},\"audio2\":{\"id\":\"audio2\"},\"audio3\":{\"id\":\"audio3\"},\"phono\":{\"id\":\"phono\"},\"v_aux\":{\"id\":\"v_aux\"},\"main_sync\":{\"id\":\"main_sync\"}}", "zone_list": "{\"main\":{\"id\":\"main\",\"input_list\":[\"napster\",\"siriusxm\",\"pandora\",\"spotify\",\"tidal\",\"deezer\",\"airplay\",\"mc_link\",\"server\",\"net_radio\",\"bluetooth\",\"usb\",\"tuner\",\"av1\",\"av2\",\"av3\",\"av4\",\"av5\",\"av6\",\"av7\",\"audio1\",\"audio2\",\"audio3\",\"phono\",\"v_aux\"],\"link_control_list\":[\"speed\",\"standard\",\"stability\"],\"link_audio_delay_list\":[\"audio_sync\",\"lip_sync\"],\"distribution\":{\"version\":2,\"compatible_client\":[2],\"client_max\":9,\"server_zone_list\":[\"main\",\"zone2\"]},\"sound_program_list\":[\"munich\",\"vienna\",\"amsterdam\",\"freiburg\",\"royaumont\",\"chamber\",\"village_vanguard\",\"warehouse_loft\",\"cellar_club\",\"roxy_theatre\",\"bottom_line\",\"sports\",\"action_game\",\"roleplaying_game\",\"music_video\",\"recital_opera\",\"standard\",\"spectacle\",\"sci-fi\",\"adventure\",\"drama\",\"mono_movie\",\"enhanced\",\"2ch_stereo\",\"9ch_stereo\",\"surr_decoder\",\"straight\"]},\"zone2\":{\"id\":\"zone2\",\"input_list\":[\"napster\",\"siriusxm\",\"pandora\",\"spotify\",\"tidal\",\"deezer\",\"airplay\",\"mc_link\",\"server\",\"net_radio\",\"bluetooth\",\"usb\",\"tuner\",\"av1\",\"av2\",\"av3\",\"av4\",\"av5\",\"av6\",\"av7\",\"audio1\",\"audio2\",\"audio3\",\"phono\",\"v_aux\",\"main_sync\"],\"link_control_list\":[\"speed\",\"standard\",\"stability\"],\"link_audio_delay_list\":[],\"distribution\":{\"version\":2,\"compatible_client\":[2],\"client_max\":9,\"server_zone_list\":[\"main\",\"zone2\"]},\"sound_program_list\":[]},\"zone3\":{\"id\":\"zone3\",\"input_list\":[\"napster\",\"siriusxm\",\"pandora\",\"spotify\",\"tidal\",\"deezer\",\"airplay\",\"mc_link\",\"server\",\"net_radio\",\"bluetooth\",\"usb\",\"tuner\",\"av1\",\"av2\",\"av3\",\"av4\",\"audio1\",\"audio2\",\"audio3\",\"phono\",\"v_aux\",\"main_sync\"],\"link_control_list\":[],\"link_audio_delay_list\":[],\"distribution\":{\"version\":2,\"compatible_client\":[2],\"client_max\":9,\"server_zone_list\":[\"main\",\"zone2\"]},\"sound_program_list\":[]},\"zone4\":{\"id\":\"zone4\",\"input_list\":[\"av1\",\"av2\",\"av3\",\"av4\",\"av5\",\"av6\",\"av7\",\"v_aux\"],\"link_control_list\":[],\"link_audio_delay_list\":[],\"distribution\":{\"version\":2,\"compatible_client\":[2],\"client_max\":9,\"server_zone_list\":[\"main\",\"zone2\"]},\"sound_program_list\":[]}}", "serial": "AAAAAAAA", "udn": "uuid:9ab0c000-f668-11de-9976-00a0defc5533", "uuid": "cc796d12-2dd6-49db-9c09-1e971208ea9e", "status": "seen", "updated": "2024-11-08T02:41:36.341Z" }, "d83f28e7-1d78-4a3f-9cfa-af2c4aa8ac24": { "name": "Bedroom", "address": "192.168.10.91", "model": "WXC-50", "input_list": "{\"napster\":{\"id\":\"napster\"},\"siriusxm\":{\"id\":\"siriusxm\"},\"pandora\":{\"id\":\"pandora\"},\"spotify\":{\"id\":\"spotify\"},\"tidal\":{\"id\":\"tidal\"},\"deezer\":{\"id\":\"deezer\"},\"airplay\":{\"id\":\"airplay\"},\"mc_link\":{\"id\":\"mc_link\"},\"server\":{\"id\":\"server\"},\"net_radio\":{\"id\":\"net_radio\"},\"bluetooth\":{\"id\":\"bluetooth\"},\"usb\":{\"id\":\"usb\"},\"optical\":{\"id\":\"optical\"},\"aux\":{\"id\":\"aux\"}}", "zone_list": "{\"main\":{\"id\":\"main\",\"input_list\":[\"napster\",\"siriusxm\",\"pandora\",\"spotify\",\"tidal\",\"deezer\",\"airplay\",\"mc_link\",\"server\",\"net_radio\",\"bluetooth\",\"usb\",\"optical\",\"aux\"],\"link_control_list\":[\"speed\",\"standard\",\"stability\"],\"link_audio_delay_list\":[\"audio_sync_on\",\"audio_sync_off\"],\"distribution\":{\"version\":2,\"compatible_client\":[2],\"client_max\":9,\"server_zone_list\":[\"main\"]},\"sound_program_list\":[]}}", "serial": "0C997603", "udn": "uuid:9ab0c000-f668-11de-9976-00a0dedc94a4", "uuid": "d83f28e7-1d78-4a3f-9cfa-af2c4aa8ac24", "status": "seen", "updated": "2024-11-08T02:41:36.343Z" } }, "f_use_debug": false, "f_blank_stale_status": false, "list_language": "en", "command_timeout": "2000", "zone_list": { "main": { "id": "main", "alt_id": "Main_Zone", "label": "Main" }, "zone2": { "id": "zone2", "alt_id": "Zone_2", "label": "Zone 2" }, "zone3": { "id": "zone3", "alt_id": "Zone_3", "label": "Zone 3" }, "zone4": { "id": "zone4", "alt_id": "Zone_4", "label": "Zone 4" } }, "main": "Main", "zone_2": "Zone 2", "zone_3": "Zone 3", "zone_4": "Zone 4", "services_timeout": "5000" }, { "id": "dd6765be68d9b580", "type": "ui_tab", "name": "Musiccast", "icon": "dashboard", "order": 2, "disabled": false, "hidden": false } ]