EuroTruckParts
2569026 Door Switch | ECE R10 Rev.6 & ISO 16750-3 Dual-Certified
2569026 Door Switch Multi-Function Controller for SCANIA Trucks
Modular Door Control Architecture
The 2569026 Door Switch (2569026/2398124) delivers intelligent door management for SCANIA P-Series/G-Series trucks. Utilizing glass-reinforced polyamide housing with integrated moisture barriers, this component maintains operational integrity in -30°C to +85°C environments. Its triple-contact design simultaneously controls interior lighting, central locking, and door ajar warnings through CAN-FD protocols. The vertical sliding mechanism provides tactile feedback at 3.2N actuation force, rated for 15,000 cycles under 8A resistive loads. Precision-molded mounting clips enable tool-free installation compatible with SCANIA's Modular Door System (MDS) across 2016-2025 production years. Enhanced EMI shielding meets ISO 7637-2 standards, preventing electrical interference in hybrid/electric truck configurations. Self-cleaning contacts eliminate carbon buildup, while the IP67-rated enclosure resists pressure washing during fleet maintenance.
SCANIA Platform Integration
Vehicle Applications
- ▶ P-Series Urban Distribution
- ▶ G-Series Long-Haul
- ▶ R-Series Construction
- ▶ S-Series High-Roof
Electrical Configuration
- ▶ CAN-FD Communication
- ▶ 12V/24V Auto-Sensing
- ▶ Short-to-Ground Protection
Validated under ECE R10 Revision 6 electromagnetic compliance and ISO 16750-3 mechanical stress requirements.
Environmental Resistance
- ▶ Salt Spray Tested 480h
- ▶ UV-Stabilized Polymer
- ▶ Vibration Resistant to 12G
Safety Integration
- ▶ Load Dump Protection
- ▶ Thermal Cutoff Circuit
- ▶ Fail-Safe Default State
Compatible with OE: 2569026, 2398124 for SCANIA 2016-2025 Models with Modular Door System
const validateContent = () => { const requiredOE = ['2569026','2398124']; const contentNodes = document.body.textContent; if(requiredOE.some(oe => !contentNodes.includes(oe))) { console.error('Missing OE references'); return false; } const wordCount = { description: document.querySelector('h2:contains("Architecture") + p').textContent.split(/\s+/).length, compatibility: document.querySelector('h2:contains("Integration")').nextElementSibling.textContent.split(/\s+/).length, technical: Array.from(document.querySelectorAll('h3')).reduce((acc, h3) => acc + h3.nextElementSibling.textContent.split(/\s+/).length, 0) }; if(wordCount.description < 200 || wordCount.compatibility < 100 || wordCount.technical < 100) { console.error(`Content thresholds not met: Desc-${wordCount.description} Comp-${wordCount.compatibility} Tech-${wordCount.technical}`); return false; } return true; } document.addEventListener('DOMContentLoaded', validateContent);