Tools & DownloadsContate-nosServiço
Produto SanHok

LED Lamp Assembly Line

The LED lamp assembly line consists of a production line, aging line, and packaging line. Its size can be customized to fit the workshop area, making it adaptable to various production environments. This assembly line is suitable for producing LED lamps of all sizes. For small-sized LED lamps, the assembly line uses a belt conveyor, while for larger-sized LED lamps, a speed chain conveyor is employed.

Contate-nos para um preço

Fale com um especialista em transportadores

Especificações

SanHok LED Lamp Assembly Line

Led Lamp Assembly Line CAD

Motor – 2HP, 1:60 Cheeming brand motor, equipped with frequency speed controller.

Frame for Motor – 4040T2.0mm aluminum extrusion, A3 board shrouding in 1.0mm thickness, equipped with sprocket and chain.

Drawer – Equipped drawer in the line, thickness 1.2 mm, powder coating.

Guide Rail – 4060T1.5mm aluminum extrusion.

Support Frame – 4040T1.5mm aluminum extrusion, equipped with a column every 2000 mm, working height 750 mm.

Lighting – 28W, T5 tube.

Instruction Board – Support adopts 28*30 aluminum bars in H shape, green acrylic plate equipped with transparent A3 acrylic plate every meter.

Tool Hanging Rail – Support made of 28*30 aluminum, equipped with a set of wheels every meter.

Working Bench – 300 mm in width, 15 mm in thickness, pasted with PVC belt in 2 mm thickness, T-shape belt cover. Support frame made of 4040T1.2mm aluminum extrusion.

Plating Bench – T15 mm wooden board pasted with fireproof material, T-shape cover.

Wire Slot 60*80 – Galvanized board in 1.0 mm thickness, equipped with a socket every meter, using 4M² wire.

Conveying Belt – PVC belt in 2 mm thickness, 400 mm in width, jointless.

Supporting Board and Supporting Roller for Belt – Galvanized board in 1.0 mm thickness for support. Upper support roller: galvanized unpowered roller, 50 mm diameter. Down support roller: galvanized unpowered roller, 38 mm diameter. Rollers installed every 2000 mm.

Controlling Electrical Equipment – Equipped with 1 electric box, Chint brand switch inside.

Air Pipe – 3/4” galvanized pipe with air cock every meter for the entire line.

Leveling Feet – M12*80 galvanized feet, adjustable height 30 mm.

Working Bench – 300 mm in width, 15 mm in thickness, pasted with PVC belt in 2 mm thickness, T-shape belt cover. Support frame made of 4040T1.2mm aluminum extrusion.

Plating Bench – T15 mm wooden board pasted with fireproof material, T-shape cover.

Wire Slot 60*80 – Galvanized board in 1.0 mm thickness, equipped with a socket every meter, using 4M² wire.

Conveying Belt – PVC belt in 2 mm thickness, 400 mm in width, jointless.

Supporting Board and Supporting Roller for Belt – Galvanized board in 1.0 mm thickness for support. Upper support roller: galvanized unpowered roller, 50 mm diameter. Down support roller: galvanized unpowered roller, 38 mm diameter. Rollers installed every 2000 mm.

Controlling Electrical Equipment – Equipped with 1 electric box, Chint brand switch inside.

Air Pipe – 3/4” galvanized pipe with air cock every meter for the entire line.

Leveling Feet – M12*80 galvanized feet, adjustable height 30 mm.

Características

Maximize a eficiência e a durabilidade

Projetados com precisão e construídos com materiais de alta qualidade, esses rolos garantem uma operação suave e confiável mesmo sob as cargas mais pesadas. Com uma variedade de tamanhos e tratamentos de superfície personalizáveis, nossos rolos são perfeitos para uma variedade de indústrias, incluindo manufatura, logística e manuseio de materiais.

Successful Cases

SanHok LED Lamp Assembly Line Successful Cases

Led Lamp Assembly Line Part 1

Led Lamp Assembly Line Part 1

Led Lamp Assembly Line Part 2

Led Lamp Assembly Line Part 2
Electric Box

Led Lamp Assembly Line Part 3

Led Lamp Assembly Line Part 4

Led Lamp Assembly Line Part 4
Led Lamp Assembly Line Part 5

Led Lamp Assembly Line Part 5

Led Lamp Assembly Line Part 6

Led Lamp Assembly Line Part 6
Serviços

Etapas de personalização

O rolo transportador é um produto personalizado não padronizado. As etapas de personalização são as seguintes:

1. What kind of led lamp to be assembled

2. What the dimension of lamp

3. What the production capacity

4. Need the workshop layout

Contate-nos para um preço

Fale com um especialista em transportadores

Acessórios 样式1

Enhance Your Assembly Line With Our Premium Accessories

<script>
document.addEventListener('DOMContentLoaded', () => {

    const FBautoplayTime = 5; // Set autoplay time in secounds

    // Seleccionar todos los conjuntos de tabs
    const tabsSets = document.querySelectorAll('[fb-tabs]');
  


    tabsSets.forEach(tabsSet => {
        const tabs = tabsSet.querySelectorAll('[fb-tabs-btn]');
        const panels = tabsSet.querySelectorAll('[fb-tabs-panel]');
        const tabsMenu = tabsSet.querySelector('[fb-tabs-menu]');
        const tabsTitle = tabsSet.querySelector('[fb-tabs-title]');
        const isVertical = tabsSet.hasAttribute('fb-vertical');
            
      // Añadir la variable CSS --fb-progress-time al estilo de [fb-tabs]
        tabsSet.style.setProperty('--fb-progress-time', `${FBautoplayTime}s`);

        // Asignar aria-label del menú de tabs con el texto del título
        if (tabsMenu && tabsTitle) {
            tabsMenu.setAttribute('aria-label', tabsTitle.textContent.trim());
        }

        // Asignar aria-controls a los tabs y aria-label a los paneles
        if (tabs.length === panels.length) {
            tabs.forEach((tab, index) => {
                const panelId = panels[index].id;
                const tabText = tab.textContent.trim();
                if (panelId && tabText) {
                    tab.setAttribute('aria-controls', panelId);
                    panels[index].setAttribute('aria-label', tabText);
                }
                tab.setAttribute('aria-selected', tab.classList.contains('brx-open'));
                tab.setAttribute('tabindex', tab.classList.contains('brx-open') ? '0' : '-1');
            });
        }

        // Configurar el MutationObserver
        const observer = new MutationObserver((mutations) => {
            mutations.forEach((mutation) => {
                if (mutation.type === 'attributes' && mutation.attributeName === 'class') {
                    const targetTab = mutation.target;
                    targetTab.setAttribute('aria-selected', targetTab.classList.contains('brx-open'));
                    targetTab.setAttribute('tabindex', targetTab.classList.contains('brx-open') ? '0' : '-1');
                }
            });
        });

        // Observar cada tab para cambios en la clase
        tabs.forEach((tab) => {
            observer.observe(tab, { attributes: true });
        });

        let currentTabIndex = 0;
        let autoplayInterval = null;
        let hoverTimeout = null;
        let isHovered = false;
        let manualSelection = false;

        const startAutoplay = () => {
            autoplayInterval = setInterval(() => {
                if (!manualSelection && !isHovered) {
                    const nextIndex = (currentTabIndex + 1) % tabs.length;
                    activateTab(nextIndex);
                }
            }, FBautoplayTime*1000); // Usar la constante para el tiempo del autoplay
        };

        const resetAutoplay = (index) => {
            clearInterval(autoplayInterval);
            activateTab(index);
            manualSelection = true;

            tabs.forEach((tab, idx) => {
                tab.setAttribute('aria-selected', idx === currentTabIndex);
                tab.setAttribute('tabindex', idx === currentTabIndex ? '0' : '-1');
                panels[idx].classList.toggle('brx-open', idx === currentTabIndex);
            });

            setTimeout(() => {
                manualSelection = false;
            }, 100);
        };

        const activateTab = (index) => {
            tabs[currentTabIndex].classList.remove('brx-open');
            panels[currentTabIndex].classList.remove('brx-open');

            currentTabIndex = index;

            tabs[currentTabIndex].classList.add('brx-open');
            panels[currentTabIndex].classList.add('brx-open');

            tabs.forEach((tab, idx) => {
                tab.setAttribute('aria-selected', idx === currentTabIndex);
                tab.setAttribute('tabindex', idx === currentTabIndex ? '0' : '-1');
            });
        };

        startAutoplay();

        const handleHoverStart = () => {
            isHovered = true;
            tabsSet.classList.add('fb-tab-progress');
            clearInterval(autoplayInterval);
        };

        const handleHoverEnd = () => {
            isHovered = false;
            tabsSet.classList.remove('fb-tab-progress');
            if (!manualSelection) {
                startAutoplay();
            }
        };

        // Añadir manejadores de clic y hover para tabs
        tabs.forEach((tab, index) => {
            tab.addEventListener('click', () => {
                resetAutoplay(index);
            });

            tab.addEventListener('focus', () => {
                handleHoverStart();
            });

            tab.addEventListener('mouseenter', () => {
                handleHoverStart();
            });

            tab.addEventListener('mouseleave', () => {
                handleHoverEnd();
            });

            tab.addEventListener('keydown', (event) => {
                if (event.key === 'Enter' || event.key === ' ') {
                    event.preventDefault();
                    resetAutoplay(index);
                }
            });
        });

        // Añadir manejadores de hover para paneles
        panels.forEach((panel) => {
            panel.addEventListener('mouseenter', () => {
                handleHoverStart();
            });

            panel.addEventListener('mouseleave', () => {
                handleHoverEnd();
            });
        });

        // Manejo de eventos de teclado para navegación entre tabs
        tabsSet.addEventListener('keydown', (event) => {
            const currentTab = tabs[currentTabIndex];

            if (event.key === 'ArrowRight' || (isVertical && event.key === 'ArrowDown')) {
                event.preventDefault();
                const nextIndex = (currentTabIndex + 1) % tabs.length;
                resetAutoplay(nextIndex);
                tabs[nextIndex].focus();
            } else if (event.key === 'ArrowLeft' || (isVertical && event.key === 'ArrowUp')) {
                event.preventDefault();
                const nextIndex = currentTabIndex === 0 ? tabs.length - 1 : currentTabIndex - 1;
                resetAutoplay(nextIndex);
                tabs[nextIndex].focus();
            } else if (event.key === 'Home') {
                event.preventDefault();
                resetAutoplay(0);
                tabs[0].focus();
            } else if (event.key === 'End') {
                event.preventDefault();
                resetAutoplay(tabs.length - 1);
                tabs[tabs.length - 1].focus();
            }
        });
    });
  

});
</script>

Linha de montagem de ar condicionado

Aí vai o seu texto... Selecione qualquer parte do seu texto para acessar a barra de ferramentas de formatação.

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Linha de montagem de TV
Refrigerator & Freezer Assembly Line
Produção de máquinas de lavar
Linha de montagem de telefones celulares
Produção de máquinas de lavar
Linha de montagem de lâmpadas LED
Linha de montagem de microondas
Linha de montagem de dispensador de água
Verifique mais

Linha de produção de baterias

Aí vai o seu texto... Selecione qualquer parte do seu texto para acessar a barra de ferramentas de formatação.

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Acessórios

Enhance Your Assembly Line With Our Premium Accessories

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto F

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Produto A

Produto B

Produto C

Produto D

Produto E

Produto F

Apoiar

Comprehensive Services And Support

Além do suporte técnico vitalício, também oferecemos os serviços abaixo:

Remessa de máquina

Levaremos o pacote mais sólido e seguro, com caixas de madeira e todo tipo de material macio, para garantir que a máquina chegue com segurança.

Instalação

Enviaremos um engenheiro para ir ao seu local para ajudar na configuração da máquina e nos testes.

Treinamento

Nosso engenheiro ensinará sua equipe como usar a máquina e fazer a manutenção.

Garantia

Oferecemos garantia de qualidade de 12 meses ou 2.500 horas úteis.
Guia de perguntas frequentes

SanHok LED Lamp Assembly Line

A: The standard size of the assembly line is 2000900750 mm. However, it can be customized according to your production output and workshop requirements.

A: The assembly line is designed to handle LED lamps of all sizes, making it versatile for various production needs.

A: The warranty period for the assembly line is generally one year.

A: The machine is constructed using high-quality aluminum alloy and carbon steel, ensuring durability and reliability.

A: We provide additional accessories with the assembly line. In case of any component failure, these accessories can be replaced immediately to minimize downtime.

A: We dispatch our professional installation team to oversee the installation process at your location, ensuring the assembly line is set up and operational efficiently.

Envie-nos uma pergunta agora!

Preencha o formulário abaixo com suas informações básicas para nos ajudar a entender rapidamente sua situação atual.
*Seus dados serão mantidos estritamente confidenciais conosco.