CUAV CAN PMU Lite Drone Uav Power Module Remote Controller Drone Propeller Parts Drone Power Voltage Module Accessories
CUAV CAN PMU Lite Drone Uav Power Module Remote Controller Drone Propeller Parts Drone Power Voltage Module Accessories
CUAV CAN PMU Lite Drone Uav Power Module Remote Controller Drone Propeller Parts Drone Power Voltage Module Accessories
CUAV CAN PMU Lite Drone Uav Power Module Remote Controller Drone Propeller Parts Drone Power Voltage Module Accessories
CUAV CAN PMU Lite Drone Uav Power Module Remote Controller Drone Propeller Parts Drone Power Voltage Module Accessories

CUAV CAN PMU Lite Drone Uav Power Module Remote Controller Drone Propeller Parts Drone Power Voltage Module Accessories

$55.00
  • Built-in vibration damping, adapt to various harsh operating environments.
  • Triple-redundant IMUs with intelligent fault switching capability.
  • Supports temperature compensation for enhanced IMU performance.
  • CAN bus-compatible current meter support.
  • Modular design with customizable carrier board options.
14 People watching this product now!
UPS Courier delivery
UPS courier will deliver to the specified address
2-3 Days
Free 14-Day returns
Easy returns within 14 days

Product Description

官方合作图2.jpgBrief: CAN PMU lite is a CUAV standard version of the power management module, built-in STM32F412 processor, supports 10~62V voltage input and 5.4V/4A regulated output. Compared with HV_PM, it uses advanced CAN bus communication and supports standard UAVCAN protocol. PMU lite has built-in ITT temperature compensation algorithm and performs factory calibration to ensure the consistency of measurement results at different temperatures.
Can Pmu lite power module supports 10~62V voltage standard version of the power management module for plane quadcopters
Processor
STM32F103CEU6
Input voltage
10-62V (2-15S Lipo)
Maximum current
90A
Voltage accuracy
 ±0.15V
Current accuracy
±0.2A
Resolution
0.01A/V
Technical parameters
= 0 && index < productData.images.length) { currentImageIndex = index; document.getElementById('mainImage').src = 'uploads/' + productData.images[index]; // 更新缩略图状态 document.querySelectorAll('.thumbnail').forEach((thumb, i) => { thumb.classList.toggle('active', i === index); }); } } function previousImage() { const newIndex = currentImageIndex > 0 ? currentImageIndex - 1 : productData.images.length - 1; changeMainImage(newIndex); } function nextImage() { const newIndex = currentImageIndex < productData.images.length - 1 ? currentImageIndex + 1 : 0; changeMainImage(newIndex); } // 数量控制 function decreaseQuantity() { const qtyInput = document.getElementById('quantity'); const currentQty = parseInt(qtyInput.value); if (currentQty > 1) { qtyInput.value = currentQty - 1; } } function increaseQuantity() { const qtyInput = document.getElementById('quantity'); const currentQty = parseInt(qtyInput.value); if (currentQty < productData.stock) { qtyInput.value = currentQty + 1; } } // 添加到购物车 async function addToCartProduct() { const quantity = parseInt(document.getElementById('quantity').value); try { const formData = new FormData(); formData.append('action', 'add'); formData.append('product_id', productData.id); formData.append('quantity', quantity); const response = await fetch('api/cart.php', { method: 'POST', body: formData }); const result = await response.json(); if (result.success) { // 显示成功消息 showNotification('Product added to cart successfully!', 'success'); // 更新购物车计数 updateCartCountFromServer(); } else { showNotification(result.message || 'Failed to add product to cart', 'error'); } } catch (error) { showNotification('Network error. Please try again.', 'error'); } } // 立即购买 async function buyNowProduct() { const quantity = parseInt(document.getElementById('quantity').value); try { const formData = new FormData(); formData.append('action', 'add'); formData.append('product_id', productData.id); formData.append('quantity', quantity); const response = await fetch('api/cart.php', { method: 'POST', body: formData }); const result = await response.json(); if (result.success) { // 直接跳转到结账页面 window.location.href = 'checkout.php'; } else { showNotification(result.message || 'Failed to add product to cart', 'error'); } } catch (error) { showNotification('Network error. Please try again.', 'error'); } } // 分享功能 function shareProduct(platform) { const url = window.location.href; const title = productData.name; let shareUrl = ''; switch (platform) { case 'facebook': shareUrl = `https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(url)}`; break; case 'twitter': shareUrl = `https://twitter.com/intent/tweet?url=${encodeURIComponent(url)}&text=${encodeURIComponent(title)}`; break; case 'pinterest': shareUrl = `https://pinterest.com/pin/create/button/?url=${encodeURIComponent(url)}&description=${encodeURIComponent(title)}`; break; case 'linkedin': shareUrl = `https://www.linkedin.com/sharing/share-offsite/?url=${encodeURIComponent(url)}`; break; case 'telegram': shareUrl = `https://t.me/share/url?url=${encodeURIComponent(url)}&text=${encodeURIComponent(title)}`; break; } if (shareUrl) { window.open(shareUrl, '_blank', 'width=600,height=400'); } } // 图片放大模态框 function openImageModal() { // 创建模态框 const modal = document.createElement('div'); modal.style.cssText = ` position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: center; z-index: 10000; cursor: pointer; `; const img = document.createElement('img'); img.src = document.getElementById('mainImage').src; img.style.cssText = ` max-width: 90%; max-height: 90%; object-fit: contain; `; modal.appendChild(img); document.body.appendChild(modal); modal.onclick = () => { document.body.removeChild(modal); }; } // 通知功能 function showNotification(message, type = 'info') { const notification = document.createElement('div'); notification.style.cssText = ` position: fixed; top: 20px; right: 20px; padding: 15px 20px; background: ${type === 'success' ? '#4CAF50' : type === 'error' ? '#f44336' : '#2196F3'}; color: white; border-radius: 8px; z-index: 10000; box-shadow: 0 4px 12px rgba(0,0,0,0.15); animation: slideIn 0.3s ease; `; notification.textContent = message; document.body.appendChild(notification); setTimeout(() => { notification.style.animation = 'slideOut 0.3s ease'; setTimeout(() => { if (notification.parentNode) { document.body.removeChild(notification); } }, 300); }, 3000); } // 更新购物车计数 async function updateCartCount() { try { const response = await fetch('api/cart.php?action=count'); const result = await response.json(); if (result.success) { const cartCountElement = document.querySelector('.cart-count'); if (cartCountElement) { cartCountElement.textContent = result.count; } } } catch (error) { console.error('Failed to update cart count:', error); } } // 键盘导航 document.addEventListener('keydown', function(e) { if (e.key === 'ArrowLeft') { previousImage(); } else if (e.key === 'ArrowRight') { nextImage(); } }); // 标签页切换功能已移除,因为只显示产品描述 // 添加CSS动画 const style = document.createElement('style'); style.textContent = ` @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } } @keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } } `; document.head.appendChild(style);