Efficiently Summon Staff with a 6-Remote Wireless Call Bell | FORBIX SEMICON®

Professional Office Communication System with Multi-Remote Call Bell Technology

arrow_back Back to Buy Page
6 Remote Wireless Peon Call Bell System
Attendant Calling System Receiver
Attendant Calling System Receiver
Customized 6-Point Attendant Calling System
Attendant Calling Remote Controls
Wireless Peon Call Bell for Office
Model: FBXWACS06
Brand: FORBIX SEMICON®
₹26,904
inventory_2 In Stock local_shipping Free Shipping info MOQ: 1 set

Set Contains:

  • check_circle 6 no. wireless remote controllers (with A23 batteries)
  • check_circle 1 no. central receiver unit with audio alerts
  • check_circle 1 no. 12VDC power adapter for receiver

Features:

stars

Complete Attendant System: Includes 6 wireless remote controllers and 1 central receiver unit

stars

Multi-Point Communication: Support for up to 6 different calling points simultaneously

stars

Clear Audio Alerts: High-quality audio alerts with buzzing sound

stars

Long Range Operation: Up to 100-meter range in open space for reliable communication

stars

Advanced RF Technology: Latest wireless technology ensures consistent and reliable communication

stars

Easy Installation: No complex wiring needed between remotes and receiver - fully wireless operation

stars

Professional Design: Sleek and professional appearance suitable for office environments

stars

Battery Operated Remotes: Long-lasting A23 batteries included for all remote units

stars

Instant Response: Immediate alert activation upon button press

stars

Visual Indicators: LED indicators show which remote has been activated

stars

Expandable System: Can add more remotes or receivers (contact for custom requirements)

Additional Offerings:

verified Free Technical Support
verified 1-Year Warranty
verified Installation Guide Included
verified All Accessories Included
function incrementQuantity(productId) { const input = document.getElementById(`qty-${productId}`); input.value = (parseInt(input.value) || 0) + 1; } function decrementQuantity(productId) { const input = document.getElementById(`qty-${productId}`); const newValue = Math.max(0, (parseInt(input.value) || 0) - 1); input.value = newValue; } function addToCart(productId) { const quantity = parseInt(document.getElementById(`qty-${productId}`).value) || 0; if (quantity > 0) { cart[productId] = { quantity: quantity, price: 26904, name: "6 Remote Wireless Peon Call Bell System" }; updateCartDisplay(); showCartModal(); document.getElementById(`qty-${productId}`).value = 0; } } function updateCartModal() { const cartItems = document.getElementById('cart-items'); const subtotalElement = document.getElementById('cart-subtotal'); let subtotal = 0; cartItems.innerHTML = ''; Object.entries(cart).forEach(([productId, item]) => { const itemTotal = item.quantity * item.price; subtotal += itemTotal; cartItems.innerHTML += `

${item.name}

Quantity: ${item.quantity}

₹${(itemTotal).toFixed(2)}

`; }); subtotalElement.textContent = `₹${subtotal.toFixed(2)}`; } function removeFromCart(productId) { document.getElementById('lightbox').classList.add('hidden'); document.body.style.overflow = ''; } function nextLightboxImage() { openLightbox((currentImageIndex + 1) % productImages.length); } function prevLightboxImage() { openLightbox((currentImageIndex - 1 + productImages.length) % productImages.length); } document.addEventListener('DOMContentLoaded', function() { // Auto rotate carousel images const carousel = document.querySelector('.product-carousel'); let autoRotate = setInterval(() => nextImage(carousel), 5000); // Pause auto-rotation when hovering over carousel carousel.addEventListener('mouseenter', () => clearInterval(autoRotate)); carousel.addEventListener('mouseleave', () => { autoRotate = setInterval(() => nextImage(carousel), 5000); }); // Initialize first image showImage(0); // Initialize cart display updateCartDisplay(); // Keyboard navigation for lightbox document.addEventListener('keydown', function(e) { if (document.getElementById('lightbox').classList.contains('hidden')) return; switch(e.key) { case 'Escape': closeLightbox(); break; case 'ArrowLeft': prevLightboxImage(); break; case 'ArrowRight': nextLightboxImage(); break; } }); // Close lightbox when clicking outside the image document.getElementById('lightbox').addEventListener('click', function(e) { if (e.target === this) { closeLightbox(); } }); // Touch support for mobile devices let touchStartX = 0; let touchEndX = 0; document.getElementById('lightbox').addEventListener('touchstart', function(e) { touchStartX = e.changedTouches[0].screenX; }); document.getElementById('lightbox').addEventListener('touchend', function(e) { touchEndX = e.changedTouches[0].screenX; handleSwipe(); }); function handleSwipe() { const swipeThreshold = 50; const diff = touchStartX - touchEndX; if (Math.abs(diff) > swipeThreshold) { if (diff > 0) { // Swipe left - next image nextLightboxImage(); } else { // Swipe right - previous image prevLightboxImage(); } } } }); // Cart summary button click handler document.getElementById('cart-summary-button').addEventListener('click', showCartModal);