Is USB-C compatible with HDL310 systems?
  • 12 Apr 2024
  • PDF

Is USB-C compatible with HDL310 systems?

  • PDF

Article summary

Yes, USB-C connectivity is possible with the Nureva® HDL310 audio conferencing system.

USB-C connectivity methods:

  1. A direct connection using a standard USB-C to USB-B printer cable.

  2. A standard USB On-The-Go (OTG) adapter for peripherals.


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