Using the Nureva Dual HDL300 with the Yealink MVC S90
  • 29 Apr 2025
  • PDF

Using the Nureva Dual HDL300 with the Yealink MVC S90

  • PDF

Article summary

Nureva has determined that the Yealink® MVC S90 videoconferencing system will work with the Nureva® Dual HDL300 system when configured as shown in this article. Please note that the divisible rooms feature offered by the MVC S90 has not been tested with the Dual HDL300 system.

The Yealink MVC S90 bundle offers the following components:

  • MCore Pro mini-PC

  • MTouchPlus touch panel

  • AVHub audio and video processor

  • 2 Yealink UVC86 cameras

  • RoomSensor meeting room sensor

Before starting

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

Get started with the Dual HDL300 system

USB connection

Connect the USB Type A–B cable from the USB-B port on the Dual HDL300 connect module to a USB-A port on the AVHub.

Resources from Yealink

Yealink MVC S90 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(); });