CICPAP OBD2 Scanner Bluetooth, Car Code Readers & Scan Tools for iOS & Android, Wireless Auto Diagnostic Scan Tool to Check Engine & Fix All Cars & Vehicles, Bluetooth 5.4

$18.99
$26.99
-$8.00
Quantity

Description

CICPAP Expands More New Features, Turn a Smartphone Into a Smart Diagnostic Tool.

The New Upgrade OBD2 Scanner: A Powerful Scanner in Your Pocket

8+ Maintenance Services

  • Oil Resets
  • Throttle Adaptation
  • Steering Angle Resets
  • EPB Resets
  • D.P.F Regeneration
  • ABS Bleeding
  • BMS Resets
  • Airbag Resets

Support for 48+ Brand Models

  • Supports vendor-specific codes, including most car brands on the market.

One-Click Free Upgrade

  • Get all updates with one click and enjoy the functions for free forever. We will continue to optimize the software and develop more practical functions.

Intuitive Rich UI

  • The UI design of the app software stands out for its richness and intuitiveness, providing a comprehensive and user-friendly interactive interface.

Auto Scan

  • V011 provides a powerful tool to check and analyze the basic information and performance of the vehicle.

Professional Tech Support

  • We have professional technical specialists and after-sales service personnel. Just tell us your question and suggestions, and we will respond to you quickly.

FAQs

Q: How user-friendly is the exclusive app?

A: The exclusive app is designed to be intuitive, with easy navigation and clear instructions, making it accessible for both novice and experienced users.

Q: What platforms is the OBD2 Scanner compatible with?

A: The OBD2 Scanner is compatible with both iOS and Android devices, allowing users to perform diagnostics on a wide range of smartphones and tablets.

Q: How does Bluetooth 5.4 enhance the scanner's performance?

A: Bluetooth 5.4 ensures a more stable and faster connection, reducing disconnections and providing quicker data transfer between the scanner and mobile devices.

Q: What diagnostic functions does the OBD2 Scanner offer?

The scanner provides performance tests, reads and clears check engine codes, offers live data streaming, and system resets. It helps diagnose and resolve vehicle issues efficiently.

Q: What features does the OBD2 Scanner Reader offer for vehicle diagnostics?

A: The OBD2 Scanner Reader is equipped with advanced features to help diagnose vehicle issues. The scanner provides performance tests, checks engine light codes, clears error codes, and offers live data streaming.

  • CPV11 adopts the latest Bluetooth 5.4 system to provide a faster and more stable wireless connection. Keep your phone's Bluetooth turned on, plug the OBDII scanner into your car, and open the APP (OBD Home) to connect automatically. No ads, no subscriptions, and free updates for life — that's our promise.
  • CPV11 provides standard OBD2 full-mode diagnosis, including reading and clearing codes, turning off the check engine light (CEL), checking MIL status, checking battery voltage, viewing freeze frame data, performance testing, on-board monitoring, and trip analysis reports. It also reads real-time data and retrieves the vehicle's VIN. These features help you save on repair costs and significantly reduce repair time.
  • Understand the condition of your vehicle at any time through performance tests. Analyze speed changes, calculate engine speed and fuel consumption to determine the power output performance of the engine. This function can help you test the performance of second-hand/old cars.
  • CPV11 car code reader has built-in more than 35,000 DTCs, compared to the 3,000-10,000 found in older model Bluetooth OBD2 scanners. This means it can deeply scan car faults, better diagnosing and solving vehicle issues. The app also has a built-in Google search engine to look up DTC definitions.
  • This is a great option if you want to replace or upgrade an existing car scanner.
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.