import { useState } from 'react'; import { motion, AnimatePresence } from 'framer-motion'; import Image from 'next/image'; import { AlertTriangle, CheckCircle, Info, X } from 'lucide-react'; import styles from './KProHWInstall.module.css'; export default function KProHWInstall() { const [selectedImage, setSelectedImage] = useState(null); const steps = [ { title: 'Modify R243', desc: 'Install 22kΩ resistor in place of R243 jumper.', image: '/hw_install_1.jpg', }, { title: 'Bridge J250', desc: 'Bridge J250 with solder.', image: '/hw_install_2.jpg', }, { title: 'Solder J270', desc: 'Solder 1-pin connector at the J270 location.', image: '/hw_install_3.jpg', }, { title: 'Solder CN2', desc: 'Solder 5-pin connector at the CN2 location.', image: '/hw_install_4.jpg', }, { title: 'Solder CN3', desc: 'Solder 5-pin connector at the CN3 location.', image: '/hw_install_5.jpg', }, { title: 'Jumper Wires', desc: 'Solder 3 jumper wires between the points shown in the picture.', image: '/hw_install_6.jpg', }, { title: 'Wire Soldering Example', desc: 'Example of correct wire soldering execution.', image: '/hw_install_7.jpg', }, { title: 'Physical Installation', desc: 'Drill hole for USB. Install KPro board with supplied screws.', image: '/hw_install_8.jpg', }, ]; return (
{/* HEADER SECTION */}
TECHNICAL DOCUMENTATION

KPRO HARDWARE INSTALLATION GUIDE

WARNING: PROFESSIONAL INSTALLATION REQUIRED

Do not attempt to solder the ECU yourself unless you are a qualified and experienced technician. For professional assistance, please contact us. By attempting to modify the ECU, you assume full responsibility for any damage caused to the vehicle.

{/* OVERVIEW SECTION */}

MODIFICATION CHECKLIST

Five components must be modified on the ECU PCB to properly install the daughterboard. Prepare your workstation and ensure you locate these exact points on the board.

  • CN2
  • CN3
  • J270
  • J250
  • R243
{/* OVERVIEW IMAGE SLOT */}
setSelectedImage("/hw_install_9.jpg")}> ECU Overview
{/* STEPS GRID SECTION */}
{steps.map((step, index) => (
setSelectedImage(step.image)}> {/* STEP IMAGE SLOT */} {step.title}
{index + 1}

{step.title}

{step.desc}

))}
{/* FIRST UPLOAD SECTION */}

FIRST UPLOAD

Before you can successfully upload a tune to the ECU for the first time, you must clear the security settings in the KPro Manager software.

Open KPro Manager on your connected PC.
Navigate to the Online menu.
Select Erase ECU (Clear Security).
{/* FIRST UPLOAD IMAGE SLOT */}
setSelectedImage("/hw_install_10.png")}> First Upload Instructions
{selectedImage && ( setSelectedImage(null)} > e.stopPropagation()} > Full screen image )}
); }