Using a DTEN D7 with an HDL200 system
  • 29 Apr 2025
  • PDF

Using a DTEN D7 with an HDL200 system

  • PDF

Article summary

The DTEN D7 meetings device can be paired with the Nureva® HDL200 system to deliver superior audio and display capabilities — perfect for enhancing collaboration in office and learning environments.

Before starting

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

Get started with the HDL200 system

On the DTEN D7

  1. Ensure both the DTEN D7 firmware and Zoom version are up to date.

  2. Connect the USB cable from the HDL200 to a USB-A port on the DTEN D7.

On the DTEN D7 Settings page

In the local Settings window, ensure the microphone and speaker are set to the HDL200.

Resources from DTEN

DTEN D7 support

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