Elm327 v1.5 Bluetooth Pic18f25k80 Arıza Tespit Cihazı
ELM327 Bluetooth, araç elektronik sistemlerine erişim sağlayan kompakt arıza tespit cihazıdır. Arızaları tespit edin, motor kodlarını temizleyin ve performansı takip edin.
- Bluetooth Bağlantı – Kolay Erişim
- Arıza Kodları Tespit ve Temizleme
- Gerçek Zamanlı Performans Verileri
- 2002+ Araç Modelleriyle Uyumlu
OBD uygulamaları ile kullanılabilir. Android ve Windows uyumlu.
Elm327 Bluetooth OBD2 Arıza Tespit Cihazı | Android & Windows Uyumlu
/* ELM327 STYLES START - Scoped to #elm327-content */
:root {
--primary: #dd7039;
--primary-dark: #c45a25;
--primary-light: #e58955;
--primary-ultra-light: #fdf0e9;
--secondary: #3a7ca5;
--text-dark: #2d3142;
--text-medium: #4f5d75;
--text-light: #6b7a99;
--background: #faf6f2;
--white: #ffffff;
--border-light: #f3e9e2;
--shadow-sm: 0 2px 10px rgba(221, 112, 57, 0.05);
--shadow-md: 0 5px 20px rgba(221, 112, 57, 0.08);
--shadow-lg: 0 10px 30px rgba(221, 112, 57, 0.12);
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 20px;
--transition: all 0.3s ease;
}
#elm327-content {
font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--text-medium);
line-height: 1.6;
background-color: var(--background);
isolation: isolate;
position: relative;
z-index: 1;
}
#elm327-content *,
#elm327-content *::before,
#elm327-content *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#elm327-content .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
#elm327-content .hero {
padding-top: 60px;
padding-bottom: 80px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #ffffff 0%, #fdf0e9 100%);
}
#elm327-content .hero-content {
display: flex;
align-items: center;
position: relative;
z-index: 2;
}
#elm327-content .hero-text {
flex: 1;
padding-right: 50px;
}
#elm327-content .hero-title {
font-size: 48px;
line-height: 1.2;
color: #2d3142;
margin-bottom: 24px;
font-weight: 800;
}
#elm327-content .hero-title span {
color: #dd7039;
position: relative;
}
#elm327-content .hero-title span::after {
content: '';
position: absolute;
bottom: 5px;
left: 0;
width: 100%;
height: 10px;
background-color: rgba(221, 112, 57, 0.2);
z-index: -1;
}
#elm327-content .hero-description {
font-size: 18px;
margin-bottom: 32px;
color: #4f5d75;
max-width: 550px;
}
#elm327-content .hero-image {
flex: 1;
position: relative;
}
/* Product Gallery in Hero */
#elm327-content .device-showcase {
position: relative;
width: 100%;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#elm327-content .gallery-main {
width: 100%;
height: 350px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
border-radius: 20px;
overflow: hidden;
background: #ffffff;
box-shadow: 0 10px 30px rgba(221, 112, 57, 0.12);
position: relative;
cursor: zoom-in;
transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
transition: all 0.3s ease;
}
#elm327-content .gallery-main:hover {
transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
box-shadow: 0 10px 30px rgba(221, 112, 57, 0.12), 0 20px 60px rgba(221, 112, 57, 0.15);
}
#elm327-content .gallery-main img {
max-width: 85%;
max-height: 85%;
object-fit: contain;
transition: transform 0.5s ease;
filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
#elm327-content .gallery-main:hover img {
transform: scale(1.05);
}
#elm327-content .gallery-thumbnails {
display: flex;
gap: 10px;
justify-content: center;
}
#elm327-content .thumbnail {
width: 70px;
height: 70px;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
border: 3px solid transparent;
transition: all 0.3s ease;
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(221, 112, 57, 0.05);
}
#elm327-content .thumbnail img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
#elm327-content .thumbnail.active {
border-color: #dd7039;
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(221, 112, 57, 0.08);
}
#elm327-content .thumbnail:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(221, 112, 57, 0.08);
}
/* Floating Badges */
#elm327-content .floating-badges {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
#elm327-content .float-badge {
position: absolute;
padding: 10px 20px;
background: #ffffff;
border-radius: 50px;
box-shadow: 0 5px 20px rgba(221, 112, 57, 0.08);
display: flex;
align-items: center;
font-weight: 600;
font-size: 14px;
color: #2d3142;
}
#elm327-content .float-badge i {
margin-right: 8px;
color: #dd7039;
font-size: 16px;
}
#elm327-content .float-badge:nth-child(1) {
top: 15%;
left: 0;
transform: translateX(-50%);
animation: elm327-float 3s ease-in-out infinite;
}
#elm327-content .float-badge:nth-child(2) {
top: 40%;
right: 0;
transform: translateX(30%);
animation: elm327-float 4s ease-in-out infinite 1s;
}
#elm327-content .float-badge:nth-child(3) {
bottom: 20%;
left: 10%;
animation: elm327-float 3.5s ease-in-out infinite 0.5s;
}
/* Magnify View */
#elm327-content .gallery-magnify {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
z-index: 999999;
display: none;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
#elm327-content .gallery-magnify.active {
display: flex;
opacity: 1;
pointer-events: all;
}
#elm327-content #magnify-view {
position: relative;
width: 90%;
height: 90%;
display: flex;
align-items: center;
justify-content: center;
}
#elm327-content .magnify-hidden {
display: none !important;
}
#elm327-content #magnify-image {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
#elm327-content .magnify-close {
position: absolute;
top: -40px;
right: 0;
background: #ffffff;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: #2d3142;
font-size: 20px;
transition: all 0.3s ease;
}
#elm327-content .magnify-close:hover {
background: #3a7ca5;
color: #ffffff;
transform: rotate(90deg);
}
@keyframes elm327-float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
/* Features Section */
#elm327-content .features {
padding: 100px 0;
background-color: #ffffff;
}
#elm327-content .section-header {
text-align: center;
margin-bottom: 60px;
}
#elm327-content .section-title {
font-size: 36px;
font-weight: 700;
color: #2d3142;
margin-bottom: 16px;
position: relative;
display: inline-block;
}
#elm327-content .section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: #dd7039;
border-radius: 4px;
}
#elm327-content .section-description {
font-size: 18px;
color: #4f5d75;
max-width: 700px;
margin: 0 auto;
}
#elm327-content .features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
#elm327-content .feature-card {
background: #ffffff;
border-radius: 12px;
padding: 30px;
box-shadow: 0 2px 10px rgba(221, 112, 57, 0.05);
transition: all 0.3s ease;
border: 1px solid #f3e9e2;
text-align: center;
}
#elm327-content .feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 5px 20px rgba(221, 112, 57, 0.08);
border-color: #e58955;
}
#elm327-content .feature-icon {
width: 60px;
height: 60px;
background: #fdf0e9;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: #dd7039;
font-size: 24px;
transition: all 0.3s ease;
margin-left: auto;
margin-right: auto;
}
#elm327-content .feature-card:hover .feature-icon {
background: #dd7039;
color: #ffffff;
transform: rotateY(180deg);
}
#elm327-content .feature-title {
font-size: 20px;
font-weight: 600;
color: #2d3142;
margin-bottom: 15px;
}
#elm327-content .feature-description {
font-size: 15px;
color: #6b7a99;
}
/* 360 Video & Setup Guide Section */
#elm327-content .video-setup-guide {
padding: 100px 0;
background-color: #faf6f2;
position: relative;
overflow: hidden;
}
#elm327-content .video-setup-container {
display: flex;
gap: 80px;
align-items: center;
margin-top: 60px;
}
#elm327-content .video-section {
flex: 1;
max-width: 500px;
}
#elm327-content .video-wrapper {
position: relative;
background-color: #ffffff;
border-radius: 20px;
padding: 25px;
box-shadow: 0 15px 40px rgba(221, 112, 57, 0.12);
margin-top: 30px;
margin-bottom: 35px;
transition: all 0.4s ease;
}
#elm327-content .video-wrapper:hover {
transform: translateY(-8px);
box-shadow: 0 25px 60px rgba(221, 112, 57, 0.18);
}
#elm327-content .video-placeholder {
width: 100%;
height: 350px;
border-radius: 15px;
overflow: hidden;
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
display: flex;
align-items: center;
justify-content: center;
position: relative;
border: 2px solid #f3e9e2;
}
#elm327-content .video-placeholder iframe {
width: 100%;
height: 100%;
border: none;
}
#elm327-content .video-info {
text-align: center;
}
#elm327-content .video-info h3 {
font-size: 26px;
font-weight: 700;
color: #2d3142;
margin-bottom: 15px;
}
#elm327-content .video-info p {
font-size: 17px;
color: #6b7a99;
line-height: 1.7;
max-width: 450px;
margin: 0 auto;
margin-top: 10px;
}
#elm327-content .setup-section {
flex: 1;
max-width: 520px;
}
#elm327-content .setup-title {
font-size: 32px;
font-weight: 800;
color: #2d3142;
margin-bottom: 40px;
position: relative;
padding-bottom: 20px;
text-align: center;
}
#elm327-content .setup-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 5px;
background: linear-gradient(90deg, #dd7039, #e58955);
border-radius: 5px;
}
#elm327-content .setup-steps {
position: relative;
}
#elm327-content .timeline-steps {
position: relative;
padding-left: 40px;
}
#elm327-content .timeline-steps::before {
content: '';
position: absolute;
left: 25px;
top: 30px;
bottom: 30px;
width: 3px;
background: linear-gradient(180deg, #dd7039, #e58955, #dd7039);
border-radius: 3px;
box-shadow: 0 0 10px rgba(221, 112, 57, 0.3);
}
#elm327-content .timeline-step {
position: relative;
padding: 25px 0;
margin-bottom: 25px;
transition: all 0.3s ease;
}
#elm327-content .timeline-step:hover {
transform: translateX(10px);
}
#elm327-content .timeline-marker {
position: absolute;
left: -40px;
top: 25px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
z-index: 2;
}
#elm327-content .timeline-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #dd7039, #c45a25);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 20px;
box-shadow: 0 4px 15px rgba(221, 112, 57, 0.3);
transition: all 0.4s ease;
border: 4px solid #ffffff;
}
#elm327-content .timeline-step:hover .timeline-icon {
transform: rotateY(360deg) scale(1.1);
box-shadow: 0 8px 25px rgba(221, 112, 57, 0.5);
}
#elm327-content .timeline-number {
background: #ffffff;
color: #dd7039;
border: 2px solid #dd7039;
border-radius: 15px;
padding: 4px 10px;
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
box-shadow: 0 2px 8px rgba(221, 112, 57, 0.2);
transition: all 0.3s ease;
}
#elm327-content .timeline-step:hover .timeline-number {
background: #dd7039;
color: #ffffff;
transform: scale(1.1);
}
#elm327-content .timeline-content {
background: linear-gradient(135deg, #ffffff, #fdfbf9);
border-radius: 20px;
padding: 30px;
box-shadow: 0 8px 30px rgba(221, 112, 57, 0.08);
border: 2px solid transparent;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
#elm327-content .timeline-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(221, 112, 57, 0.02), rgba(221, 112, 57, 0.01));
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
#elm327-content .timeline-step:hover .timeline-content {
border-color: #e58955;
box-shadow: 0 15px 50px rgba(221, 112, 57, 0.15);
transform: translateY(-5px);
}
#elm327-content .timeline-step:hover .timeline-content::before {
opacity: 1;
}
#elm327-content .timeline-badge {
display: inline-block;
background: linear-gradient(90deg, #dd7039, #e58955);
color: #ffffff;
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 12px;
box-shadow: 0 2px 8px rgba(221, 112, 57, 0.3);
}
#elm327-content .timeline-content h4 {
font-size: 24px;
font-weight: 800;
color: #2d3142;
margin-bottom: 15px;
line-height: 1.3;
}
#elm327-content .timeline-content p {
font-size: 16px;
color: #6b7a99;
line-height: 1.7;
margin: 0;
}
/* Compatible Brands Section */
#elm327-content .compatible-brands {
padding: 100px 0;
background-color: #ffffff;
}
#elm327-content .brands-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
margin-top: 50px;
}
#elm327-content .brand-item {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(221, 112, 57, 0.05);
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
height: 100px;
border: 1px solid #f3e9e2;
}
#elm327-content .brand-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 20px rgba(221, 112, 57, 0.08);
border-color: #e58955;
}
#elm327-content .brand-item img {
max-width: 80%;
max-height: 60px;
filter: grayscale(100%);
opacity: 0.7;
transition: all 0.3s ease;
}
#elm327-content .brand-item:hover img {
filter: grayscale(0%);
opacity: 1;
}
#elm327-content .compatibility-note {
margin-top: 30px;
padding: 15px 20px;
background-color: #fdf0e9;
border-radius: 8px;
border-left: 4px solid #dd7039;
font-size: 14px;
color: #4f5d75;
text-align: center;
}
#elm327-content .compatibility-note i {
color: #dd7039;
margin-right: 8px;
}
#elm327-content .additional-brands-info {
text-align: center;
margin-top: 30px;
margin-bottom: 15px;
font-size: 17px;
color: var(--text-dark);
}
#elm327-content .additional-brands-info i {
color: var(--primary);
margin-right: 8px;
font-size: 20px;
}
#elm327-content .additional-brands-info span {
font-weight: 600;
}
/* Specifications Section */
#elm327-content .specifications {
padding: 100px 0;
background-color: #faf6f2;
}
#elm327-content .specs-container {
display: flex;
align-items: center;
margin-top: 60px;
}
#elm327-content .specifications .specs-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
#elm327-content .specifications .iframe-showcase-wrapper {
background-color: #ffffff;
border-radius: 20px;
padding: 25px;
box-shadow: 0 10px 30px rgba(221, 112, 57, 0.12);
position: relative;
width: fit-content;
margin: 0 auto;
}
#elm327-content .specifications .iframe-showcase-wrapper .badge-360 {
position: absolute;
top: 15px;
right: 15px;
background-color: #dd7039;
color: #ffffff;
padding: 8px 14px;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
z-index: 1;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#elm327-content .specifications .iframe-showcase-wrapper iframe {
display: block;
border-radius: 12px;
border: none;
transition: transform 0.3s ease;
max-width: 100%;
}
#elm327-content .specifications .iframe-showcase-wrapper:hover iframe {
transform: scale(1.03);
}
#elm327-content .specs-details {
flex: 1;
padding: 20px;
}
#elm327-content .specs-title {
font-size: 28px;
font-weight: 700;
color: #2d3142;
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
}
#elm327-content .specs-title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 4px;
background-color: #dd7039;
border-radius: 4px;
}
#elm327-content .specs-list {
list-style: none;
}
#elm327-content .specs-item {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}
#elm327-content .specs-icon {
color: #dd7039;
font-size: 20px;
margin-right: 15px;
margin-top: 2px;
}
#elm327-content .specs-text {
flex: 1;
}
#elm327-content .specs-item-title {
font-size: 17px;
font-weight: 600;
color: #2d3142;
margin-bottom: 5px;
}
#elm327-content .specs-item-description {
font-size: 15px;
color: #6b7a99;
}
/* FAQs Section */
#elm327-content .faqs {
padding: 100px 0;
background-color: #ffffff;
}
#elm327-content .faq-container {
max-width: 800px;
margin: 50px auto 0;
}
#elm327-content .faq-item {
background-color: #ffffff;
border-radius: 12px;
margin-bottom: 15px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(221, 112, 57, 0.05);
border: 1px solid #f3e9e2;
}
#elm327-content .faq-question {
padding: 20px;
background-color: #ffffff;
font-weight: 600;
color: #2d3142;
font-size: 17px;
cursor: pointer;
position: relative;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: space-between;
}
#elm327-content .faq-question:hover {
background-color: #fdf0e9;
color: #dd7039;
}
#elm327-content .faq-question i {
color: #dd7039;
transition: all 0.3s ease;
}
#elm327-content .faq-question.active i {
transform: rotate(180deg);
}
#elm327-content .faq-answer {
padding: 0 20px;
height: 0;
overflow: hidden;
transition: all 0.3s ease;
line-height: 1.8;
}
#elm327-content .faq-answer.active {
height: auto;
padding: 0 20px 20px;
}
/* Support and Contact Section */
#elm327-content .support-contact {
padding: 80px 0;
background-color: #faf6f2;
}
#elm327-content .support-contact .section-header {
margin-bottom: 50px;
}
#elm327-content .support-contact .contact-cards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 20px;
}
#elm327-content .support-contact .contact-card {
background-color: #ffffff;
border-radius: 20px;
padding: 30px;
text-align: center;
box-shadow: 0 5px 20px rgba(221, 112, 57, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#elm327-content .support-contact .contact-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 30px rgba(221, 112, 57, 0.12);
}
#elm327-content .support-contact .contact-icon-wrapper {
width: 70px;
height: 70px;
border-radius: 50%;
background-color: #fdf0e9;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
#elm327-content .support-contact .contact-icon-wrapper i {
font-size: 28px;
color: #dd7039;
}
#elm327-content .support-contact .contact-card h4 {
font-size: 20px;
color: #2d3142;
margin-bottom: 10px;
font-weight: 700;
}
#elm327-content .support-contact .contact-card p {
font-size: 16px;
color: #4f5d75;
line-height: 1.6;
}
#elm327-content .support-contact .contact-card p a {
color: #c45a25;
text-decoration: none;
font-weight: 500;
}
#elm327-content .support-contact .contact-card p a:hover {
text-decoration: underline;
color: #dd7039;
}
/* Highlight Class */
#elm327-content .highlight {
color: #dd7039;
font-weight: 600;
}
/* Responsive Styles */
@media screen and (max-width: 1024px) {
#elm327-content .features-grid {
grid-template-columns: repeat(2, 1fr);
}
#elm327-content .brands-grid {
grid-template-columns: repeat(4, 1fr);
}
}
@media screen and (max-width: 768px) {
#elm327-content .hero-content {
flex-direction: column;
text-align: center;
}
#elm327-content .hero-text {
padding-right: 0;
margin-bottom: 40px;
}
#elm327-content .hero-title {
font-size: 36px;
}
#elm327-content .device-showcase {
height: 450px;
}
#elm327-content .gallery-main {
height: 300px;
}
#elm327-content .gallery-thumbnails {
gap: 8px;
}
#elm327-content .thumbnail {
width: 60px;
height: 60px;
}
#elm327-content .video-setup-container {
flex-direction: column;
gap: 40px;
}
#elm327-content .video-section {
margin-bottom: 20px;
}
#elm327-content .video-placeholder {
height: 250px;
}
#elm327-content .specs-container {
flex-direction: column;
}
#elm327-content .specifications .specs-image {
margin-bottom: 40px;
}
#elm327-content .features-grid {
grid-template-columns: 1fr;
}
#elm327-content .brands-grid {
grid-template-columns: repeat(3, 1fr);
}
#elm327-content .float-badge {
display: none;
}
}
@media screen and (max-width: 576px) {
#elm327-content .hero-title {
font-size: 28px;
}
#elm327-content .hero-description {
font-size: 16px;
}
#elm327-content .section-title {
font-size: 28px;
}
#elm327-content .section-description {
font-size: 16px;
}
#elm327-content .device-showcase {
height: 400px;
}
#elm327-content .gallery-main {
height: 250px;
}
#elm327-content .thumbnail {
width: 50px;
height: 50px;
}
#elm327-content .brands-grid {
grid-template-columns: repeat(2, 1fr);
}
#elm327-content .support-contact .contact-cards-grid {
grid-template-columns: 1fr;
gap: 20px;
}
#elm327-content .support-contact .contact-card {
padding: 20px;
}
}
/* ELM327 STYLES END */
Aracınızı Elm327 Bluetooth ile Tanıyın!
Elm327 Arıza Tespit Cihazı, aracınızın motor problemlerini hızla tespit eden gelişmiş bir OBD2 adaptörüdür. Bu profesyonel Arıza Tespit Cihazı ile motor arıza kodlarını okuyabilir, arıza kodlarını temizleyebilir ve aracınızın performansını gerçek zamanlı olarak izleyebilirsiniz. Bluetooth 2.0 teknolojisi sayesinde Android ve Windows cihazlarınızla kablosuz bağlantı kurar, kullanımı son derece kolaydır.






Bluetooth Bağlantı
Android & Windows Uyumlu
Çok Markalı Destek
Özel Özellikler
Elm327 Bluetooth, amatör ve profesyonel kullanıcılar için geliştirilmiş gelişmiş fonksiyonlar sunar.
Gerçek Zamanlı Veri
Motor performansı, yakıt tüketimi, turbo basıncı gibi kritik parametreleri gerçek zamanlı olarak izleyin ve kaydedin.
Arıza Tespiti
Aracınızdaki motor sistemini tarayarak arıza kodlarını tespit edin, açıklamalarını görün ve temizleyin.
Performans Ölçümü
0-100 km/s hızlanma, frenleme mesafesi, motor gücü gibi performans testlerini gerçekleştirin.
Geniş Marka Desteği
Birçok farklı araç markası ve modeliyle uyumlu çalışır.
Güncel Chip Seti
En yeni PIC18F25K80 çip setiyle donatılmış, düşük güç tüketimi ve yüksek kararlılık sunar.
Sensör Testleri
Oksijen sensörü, hava akış sensörü ve daha birçok sensörün test edilmesini ve kalibrasyonunu sağlar.
360° İnceleme ve Kurulum Rehberi
360° video ile ürünü detaylı bir şekilde inceleyin ve dört kolay adımda profesyonel kurulum gerçekleştirin.
Elm327 Bluetooth 360° İnceleme
Cihazın dış görünümünü her açıdan inceleyebilir, tasarımını ve fiziksel özelliklerini yakından görebilirsiniz.
Kurulum Adımları
01
Başlangıç
Cihazı Bağlayın
Elm327 Bluetooth cihazını aracınızın OBD-II portuna takın. Bu genellikle direksiyon altında ya da orta konsolda bulunur.
02
Kurulum
Yazılımı Kurun & Eşleştirin
Bilgisayarınıza/mobil cihazınıza uyumlu bir OBD2 yazılımı kurun ve cihazı Bluetooth ile eşleştirin.
03
Analiz
Tanılamaya Başlayın
Arıza kodlarını okuyun, sistemleri kontrol edin ve gerçek zamanlı verileri analiz edin.
04
Sonuç
Sorunları Giderin
Tespit ettiğiniz arıza kodlarını kolayca temizleyin ve aracınızdaki basit sorunları kendiniz giderin.
Uyumlu Markalar
Elm327 Bluetooth, 2002 ve sonrası üretilen çoğu markanın OBD-II protokollü araçlarıyla uyumludur















Ve Daha Birçok Markayla Uyumlu!
Not: Uyumluluk, aracınızın modeli, üretim yılı ve donanımına göre değişiklik gösterebilir.
Teknik Özellikler
ELM 327 Bluetooth, en güncel donanım ve yazılım özellikleriyle donatılmıştır
360°
Hardware & Software Özellikleri
-
İşlemci ve Bellek
PIC18F25K80 yüksek performanslı çip seti
-
Bağlantı
Bluetooth 2.0 yüksek hızlı bağlantı, güvenilir kablosuz veri aktarımı
-
Araç Uyumluluğu
Geniş OBD-II protokol desteği sayesinde birçok araç modeliyle uyumluluk sunar.
-
Yazılım Uyumluluğu
Android ve Windows cihazlarla uyumlu birçok uygulama
Sıkça Sorulan Sorular
ELM 327 Bluetooth hakkında merak edilen sorular ve cevapları
ELM 327 Bluetooth hangi araçlarla uyumludur?
ELM 327 Bluetooth, genellikle 2002 yılından sonra üretilen benzinli ve 2003 yılından sonra üretilen dizel araçların OBD-II standardını destekleyen çoğu modeliyle uyumludur. Aracınızın OBD-II uyumluluğunu kontrol etmeniz önerilir.
ELM 327 Bluetooth ile hangi arıza kodlarını okuyabilirim?
ELM 327 Bluetooth ile standart OBD-II arıza kodları (P0xxx) ve markalara özel genişletilmiş arıza kodları (P1xxx, P2xxx, P3xxx) dahil olmak üzere geniş bir arıza kodu yelpazesini okuyabilirsiniz. Cihaz motor, şanzıman, ABS, hava yastığı ve diğer elektronik sistemlerdeki arızaları tespit edebilir.
ELM 327 Bluetooth hangi yazılımlarla çalışır?
ELM 327 Bluetooth, Android ve Windows gibi işletim sistemlerinde birçok uyumlu OBD2 uygulamasıyla (örneğin Torque, ScanMaster, Car Scanner ELM OBD2) kullanılabilir. Uygulama seçimi, işletim sisteminize ve tercihlerinize bağlıdır.
ELM327 Bluetooth, Wi-Fi ve USB versiyonları arasındaki fark nedir?
Temel fark bağlantı teknolojisi ve platform uyumluluğudur. Bluetooth versiyonu, Android ve Windows cihazlarla kablosuz bağlantı sunarak geniş bir kullanım alanı sağlar. USB versiyonu kablolu olup genellikle Windows PC'lerde kararlı bir bağlantı için tercih edilir. Wi-Fi versiyonu ise genellikle iOS ve Windows cihazlarda kullanılır ve daha geniş bir kablosuz ağ menzili sunabilir. Bluetooth, taşınabilirlik ve mobil cihazlarla kolay entegrasyon avantajına sahiptir.
Cihazı kullanmak için teknik bilgiye ihtiyacım var mı?
Hayır, ELM 327 Bluetooth kullanıcı dostu tasarımı sayesinde teknik bilgisi olmayan kişiler tarafından bile kolayca kullanılabilir. Cihaz basitçe aracın OBD portuna takılır ve mobil uygulama üzerinden arıza kodları ve açıklamaları görüntülenebilir. Detaylı teknik analizler için bazı temel otomotiv bilgisi faydalı olabilir.
ELM 327 Bluetooth cihazı aracıma zarar verir mi?
Hayır, Elm327 Bluetooth cihazı sadece ECU'dan veri okur ve gerektiğinde arıza kodlarını siler. Aracın elektronik sistemlerine zarar vermez. Cihaz, araçların standart teşhis protokollerini kullanır ve aracınızın performansını veya işlevini değiştirmez, sadece mevcut bilgileri görüntüler.
Destek ve İletişim
Ürünümüzle ilgili herhangi bir sorunuz veya desteğe ihtiyacınız olursa bizimle iletişime geçmekten çekinmeyin.
Telefon
E-posta
No questions have been asked about this product yet.
Be the first to ask a question!Ask a Question
No reviews yet
Have you tried this product? Share your experience and help other customers make the right choice. Your review will be published after approval.
Türkçe
English
العربية