VSP Shop - Tienda en línea

Barra de luces Vantage PRO Ultra Brillante con 64 poderosos LED En Color Verde última generación

Disponibilidad: Agotado

  • Cumplimiento SAE
  • Cumplimiento Título California 13
  • Incluye controlador
  • Tecnología ICE optics para mayor visibilidad de luz
Marca: ECCO
Modelo: VTG48G
Clave SAT: 39111706
Garantía: 1 año
$18,505.32

Especificaciones del Producto

Peso:
0 kg
Dimensiones:
Alto: 0 cm, Ancho: 0 cm, Largo: 0 cm
Categoría:
Rojo-Azul / Barras de Luz / Torretas Vehiculares / IoT / GPS / Telemática y Señalización Audiovisual

Barra de luces Vantage Ultra Brillante 

 

La torreta Vantage es una barra de luces versátil, potente y de bajo perfil; adecuada para una gama amplia de vehículos como Seguridad Pública, etc.

 

Configuración: 12 módulos con 3 LED c/u en color Verde, 4 módulos esquineros con 3 LED c/u en color Verde, 2 módulos frontales con 4 LED c/u en color blanco como luz de penetración y  2 módulos laterales con 4 LED c/u en color blanco como luz callejonera

 

Características:

  • 48 patrones de destello
  • Director de tráfico (Interconstruido Ámbar)
  • Módulos con tecnología ICE para mayor visibilidad de luz
  • Completamente configurable
  • Luces de Penetración
  • Luces Callejoneras
  • Chasis de aluminio
  • Domos y base de policarbonato
  • 64 LED última generación
  • Longitud 48', Altura 2.5” y Ancho 11”
  • Rango de temperatura: -30 a 50 °C
  • Montaje de gancho
  • Incluye controlador 

 

 

Especificaciones Técnicas:

Voltaje:12-24 Vcc

Consumo: 11 Amp

Dimensiones: 48' x 4.2' x 11' (Ancho x Altura x Profundidad)

 

 

 

{ thumb.classList.remove('active'); }); // Agregar clase activa a la miniatura seleccionada element.classList.add('active'); // Quitar zoom si estaba activo document.getElementById('mainImageContainer').classList.remove('zoomed'); } // Alternar zoom al hacer clic en la imagen principal document.getElementById('mainImageContainer').addEventListener('click', function() { this.classList.toggle('zoomed'); }); // Actualizar cantidad function updateQuantity(change) { const input = document.getElementById('quantity'); let value = parseInt(input.value) || 1; const max = parseInt(input.max) || 1; value += change; if (value < 1) value = 1; if (value > max) value = max; input.value = value; } // Mostrar alerta personalizada function showAlert(message, isSuccess = true) { const alertMsg = $('#alertMessage'); alertMsg.text(message); alertMsg.css('background-color', isSuccess ? '#28a745' : '#dc3545'); // Cambiar icono según el tipo de mensaje const icon = isSuccess ? 'fa-check-circle' : 'fa-exclamation-circle'; alertMsg.html(`${message}`); alertMsg.fadeIn(); setTimeout(() => { alertMsg.fadeOut(); }, 3000); } // Añadir al carrito con loader y mensaje function addToCart(productId, quantity, checkout = false) { quantity = parseInt(quantity) || 1; if (quantity < 1) quantity = 1; // Mostrar loader $('#loaderOverlay').fadeIn(); $.post('controller/carro/functions.php', { ppo: 'add', id: productId, cant: quantity }, function(response) { // Ocultar loader $('#loaderOverlay').fadeOut(); try { const data = typeof response === 'object' ? response : JSON.parse(response); if (data.success) { updateCartCount(); showAlert('Producto agregado correctamente'); if (checkout) { setTimeout(() => { window.location.href = 'envio.php' }, 500); } } else { showAlert(data.message || 'Error al agregar el producto', false); } } catch (e) { updateCartCount(); showAlert('Producto agregado correctamente'); if (checkout) { setTimeout(() => { window.location.href = 'envios.php' }, 500); } } }).fail(function(xhr, status, error) { $('#loaderOverlay').fadeOut(); showAlert('Error de conexión al servidor', false); console.error('Error al agregar al carrito:', error); }); } // Actualizar contador del carrito function updateCartCount() { $.post('controller/carro/functions.php', { ppo: 'count' }, function(count) { $('.cart-count').text(count); }); } // Scroll to top document.querySelector('.scroll-to-top').addEventListener('click', function(e) { e.preventDefault(); window.scrollTo({ top: 0, behavior: 'smooth' }); }); // Mostrar/ocultar botón de scroll window.addEventListener('scroll', function() { const scrollBtn = document.querySelector('.scroll-to-top'); if (window.scrollY > 300) { scrollBtn.style.display = 'flex'; } else { scrollBtn.style.display = 'none'; } }); // Inicializar contador del carrito $(document).ready(function() { updateCartCount(); });