MAQUINA OMISA HST300 20MM A 1200MM

SKU: 002 Categoría:

Especificaciones Técnicas

CÓDIGO 60000037012012

Especificaciones Técnicas
Voltaje nominal  230v
Frecuencia 50Hz/ 60 Hz
Potencia 2800 VA, 80% de ciclo
Grado de protección  IP54
Corriente primaria  Máx. 16A
Temperatura ambiente -20ºC hasta +60ºC (-4ºF hasta +140ºF)

 

const registerAllyAction = () => { if ( ! window?.elementorAppConfig?.hasPro || ! window?.elementorFrontend?.utils?.urlActions ) { return; } elementorFrontend.utils.urlActions.addAction( 'allyWidget:open', () => { if ( window?.ea11yWidget?.widget?.open ) { window.ea11yWidget.widget.open(); } } ); }; const waitingLimit = 30; let retryCounter = 0; const waitForElementorPro = () => { return new Promise( ( resolve ) => { const intervalId = setInterval( () => { if ( retryCounter === waitingLimit ) { resolve( null ); } retryCounter++; if ( window.elementorFrontend && window?.elementorFrontend?.utils?.urlActions ) { clearInterval( intervalId ); resolve( window.elementorFrontend ); } }, 100 ); // Check every 100 milliseconds for availability of elementorFrontend }); }; waitForElementorPro().then( () => { registerAllyAction(); });