Which certifications does the HDL200 system have?
  • 22 Apr 2024
  • PDF

Which certifications does the HDL200 system have?

  • PDF

Article summary

Electromagnetic compatibility

  • FCC Part 15, Class A

  • ICES-003, Class A

  • CISPR 32 (EN 55032), Class A

  • CISPR 35 (EN 55035)

  • CISPR 24 (EN 55024)

Safety

  • UL 60950

  • CAN/CSA-C22.2 NO. 60950

  • IEC/EN 60950

  • AS/NZS 60950

  • UL 62368

  • CAN/CSA-C22.2 NO. 62368

  • IEC/EN 62368

  • AS/NZS 62368

Environmental

  • California Proposition 65

  • EPA (TSCA — Toxic Substances Control Act) Restrictions

  • RoHS

  • REACH

  • POPs (Persistent Organic Pollutants)

  • WEEE


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