Service Temporarily Unavailable

The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

Wandgehäuse nach IP54 Standard (function(config){var defaults={wait_for_update:1000};for(const[consentType,consentConfig]of Object.entries(config)){defaults[consentType]=consentConfig.default_status;} window.uetq=window.uetq||[];window.uetq.push('consent','default',defaults);document.addEventListener('pr-cookie-consent-api:configured',()=>{const updateConsents=()=>{let updated={};for(const[consentType,consentConfig]of Object.entries(config)){let cookieCategory=consentConfig.cookie_category;updated[consentType]=prCookieConsentApi.isAllowedCategory(cookieCategory)?'granted':'denied'} window.uetq.push('consent','update',updated);} updateConsents();prCookieConsentApi.consent.addCallback(updateConsents);});})(JSON.parse("\u007B\u0022ad_storage\u0022\u003A\u007B\u0022cookie_category\u0022\u003A\u0022marketing\u0022,\u0022default_status\u0022\u003A\u0022denied\u0022\u007D\u007D")); (function(config){function runGtm(config){(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https\u003A\u002F\u002Fwww.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer',config.containerId);} if(!config.consentMode){document.addEventListener('pr-cookie-consent-api:configured',()=>{prCookieConsentApi.isAllowedCategory(config.categoryKey)&&runGtm(config);});return;} window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);} gtag('consent','default',config.defaultConsentTypes);runGtm(config);document.addEventListener('pr-cookie-consent-api:configured',()=>{const updateGtmConsents=()=>{let updatedConsentTypes={...config.defaultConsentTypes};for(const[key,categoryKey]of Object.entries(config.consentTypesCategories)){updatedConsentTypes[key]=prCookieConsentApi.isAllowedCategory(categoryKey)?'granted':'denied'} gtag('consent','update',updatedConsentTypes);} updateGtmConsents();prCookieConsentApi.consent.addCallback(updateGtmConsents);});})({"categoryKey":"marketing","containerId":"GTM-M8B4T5JK","consentMode":1,"defaultConsentTypes":{"ad_storage":"denied","analytics_storage":"denied","functionality_storage":"denied","personalization_storage":"denied","security_storage":"denied","ad_user_data":"denied","ad_personalization":"denied"},"consentTypesCategories":{"ad_storage":"marketing","analytics_storage":"statistics","functionality_storage":"necessary","personalization_storage":"preferences","security_storage":"necessary","ad_user_data":"marketing","ad_personalization":"marketing"}}); var prCookieService={defaultAttributes:{path:'/'},converter:{write:function(value){return encodeURIComponent(value);},read:function(value){return decodeURIComponent(value)}},decode:function(string){return string.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);},set:function(key,value,attributes){if(typeof document==='undefined'){return;} attributes=Object.assign(this.defaultAttributes,attributes);if(typeof attributes.expires==='number'){attributes.expires=new Date(new Date()*1+attributes.expires*864e+5);} attributes.expires=attributes.expires?attributes.expires.toUTCString():'';try{var result=JSON.stringify(value);if(/^[\{\[]/.test(result)){value=result;}}catch(e){} value=this.converter.write(value);key=this.converter.write(String(key)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var stringifiedAttributes='';for(var attributeName in attributes){if(!attributes[attributeName]){continue;} stringifiedAttributes+='; '+attributeName;if(attributes[attributeName]===true){continue;} stringifiedAttributes+='='+attributes[attributeName].split(';')[0];} return(document.cookie=key+'='+value+stringifiedAttributes);},remove:function(key,attributes){this.set(key,'',{...attributes,...{expires:-1}});},get:function(key,json=false){if(typeof document==='undefined'){return;} var jar={};var cookies=document.cookie?document.cookie.split('; '):[];var i=0;for(;i var prGlobalPrivacyControlApi={config:{"canProcessSignal":false,"isGeotargetingEnabled":true,"geotargetingApiEndpoint":"https:\/\/www.lehmann-it.de\/en\/rest\/V1\/pr-global-privacy-control\/geo-targeting\/is-applicable"},isApplicableForUser:false,isConfigured:false,configure:function(){const setConfigurationResult=(isApplicable)=>{this.isApplicableForUser=isApplicable;this.isConfigured=true;if(isApplicable){this.signalHandlers.processPendingHandlers();} document.dispatchEvent(new Event('pr-global-privacy-control-api:configured'));};if(!this.config.canProcessSignal){setConfigurationResult(false);return;} if(this.cache.get('isApplicableForUser')){setConfigurationResult(this.cache.get('isApplicableForUser'));return;} if(!navigator.globalPrivacyControl){setConfigurationResult(false);return;} if(!this.config.isGeotargetingEnabled){this.cache.set('isApplicableForUser',true);setConfigurationResult(true);return;} this.geotargeting.isApplicable().then(result=>{this.cache.set('isApplicableForUser',result);setConfigurationResult(result);}).catch(()=>setConfigurationResult(true));},shouldApply:function(){if(!this.isConfigured){return false;} return this.isApplicableForUser;},};prGlobalPrivacyControlApi.geotargeting={isApplicable:async function(){return fetch(prGlobalPrivacyControlApi.config.geotargetingApiEndpoint,{method:'POST',credentials:'include'}).then(r=>r.json());}};prGlobalPrivacyControlApi.signalHandlers={handlers:[],addHandler:function(callback){let handler={callback:callback,executed:false} this.handlers.push(handler);if(prGlobalPrivacyControlApi.isConfigured&&prGlobalPrivacyControlApi.shouldApply()){handler.callback();handler.executed=true;}},processPendingHandlers:function(){if(!prGlobalPrivacyControlApi.shouldApply()){return;} if(!prCookieService.get('pr-gpc-signal-handled')){prCookieService.set('pr-gpc-signal-handled',true,{expires:null});} this.handlers.forEach(function(handler){if(false===handler.executed){handler.callback();handler.executed=true;}}.bind(this));}};prGlobalPrivacyControlApi.cache={storageKey:'pr_global_privacy_control_api_cache',get:function(key){try{let raw=sessionStorage.getItem(this.storageKey);let cacheData=JSON.parse(raw);return cacheData.hasOwnProperty(key)?cacheData[key]:null;}catch(e){return null;}},set:function(key,value){try{let cacheData=JSON.parse(sessionStorage.getItem(this.storageKey)||'{}');cacheData[key]=value;sessionStorage.setItem(this.storageKey,JSON.stringify(cacheData));}catch(e){}},};prGlobalPrivacyControlApi.configure();

19-inch wall-mounted enclosure according to IP54 standard

19-inch wall-mounted enclosure according to IP54 standard
Our IP55 wall-mounted enclosures are designed for industrial applications. They are based on the EN 60529 compliant IP55 protection class and are therefore protected against dust penetration and water ingress. The ventilation units and filter internals have been designed based on the IP54 protection class. All wall-mounted enclosures feature the 3-point locking system with a lockable swing handle and insulated cable entries. Integrated ventilation filter housings provide fresh air intake (protection against water and dust penetration according to IP54).

Application areas are open areas exposed to environmental effects (dust, splash water, etc.).

Filters
Set Descending Direction

3 Items

per page
View as Grid List
Filters
Set Descending Direction

3 Items

per page
View as Grid List