Using a Nureva HDL200 system with the Mersive Solstice Gen3 Pod
  • 29 Apr 2025
  • PDF

Using a Nureva HDL200 system with the Mersive Solstice Gen3 Pod

  • PDF

Article summary

The Nureva® HDL200 system integrates seamlessly with the Mersive Solstice Gen3 Pod to improve meeting start-up times, participant engagement and meeting room productivity. The Solstice Pod adds wireless BYOD connectivity when paired with Nureva audio devices.

Before starting

Set up the HDL200 system by following the steps in the get started guide:

Get started with the HDL200 system

On the Nureva HDL200

  1. Connect the included power cable to the Nureva HDL200.

  2. Connect the included USB Type A-B cable from the HDL200 to a USB-A port on the Solstice Pod.

On the Solstice Pod

  1. Connect the included power cable to the Solstice Pod.

  2. Connect an Ethernet cable from the Solstice Pod to the network.

  3. Connect an HDMI cable from the HDMI-out of the Solstice Pod to the display or displays. The Solstice Pod supports up to two displays.

Expected behavior

When an Android™ device is connected to the Solstice Pod using the Mersive Solstice app, the audio will play on the Android device itself and not be routed to the Nureva audio device. This is expected behavior and not a compatibility issue with the Nureva device.

Resources from Mersive

Mersive support page

The technical information in this article, including specifications and recommendations, is provided for customer convenience. The accuracy of this information is not guaranteed and is subject to change without notice. Please check the user manuals and related documentation from each product manufacturer to ensure that your setup meets the proper recommendations.


Was this article helpful?

$(document).ready(function() { if (layoutData.langCode == "en") { $('#aa-search-input').each(function() { if (!$(this).val()) { $(this).attr("placeholder", "Search Nureva support"); } }); } }); // FOR FOOTER MENUS document.addEventListener('DOMContentLoaded', () => { const headings = document.querySelectorAll('.menu-heading'); function toggleMenu(heading) { if (window.innerWidth <= 1099) { const menuList = heading.parentElement; const ul = menuList.querySelector('ul'); if (menuList.classList.contains('active')) { menuList.classList.remove('active'); ul.style.maxHeight = null; } else { menuList.classList.add('active'); ul.style.maxHeight = ul.scrollHeight + "px"; } } } function addClickListeners() { headings.forEach(heading => { heading.addEventListener('click', clickHandler); }); } function removeClickListeners() { headings.forEach(heading => { heading.removeEventListener('click', clickHandler); }); } function clickHandler(event) { if (window.innerWidth <= 1099) { toggleMenu(event.currentTarget); } } function checkWindowSize() { if (window.innerWidth > 1099) { removeClickListeners(); // Ensure menus are open on desktop view const menuLists = document.querySelectorAll('.menu-list'); menuLists.forEach(menuList => { menuList.classList.add('active'); const ul = menuList.querySelector('ul'); ul.style.maxHeight = null; ul.style.padding = null; }); } else { addClickListeners(); // Ensure menus are collapsible on mobile view const menuLists = document.querySelectorAll('.menu-list'); menuLists.forEach(menuList => { menuList.classList.remove('active'); const ul = menuList.querySelector('ul'); ul.style.maxHeight = 0; }); } } window.addEventListener('resize', checkWindowSize); checkWindowSize(); });