Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay
Universal Carplay

Universal Carplay

Price
$0.00
$59.99
Save  $-59.99
Wired Standard
Please select a wired standard
Quantity
Worldwide shipping
Free returns
24/7 Service
Payment Security
  • TIPS: All goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!!!
  • 😊If you are not satisfied with the goods you received, please contact us within 15 days after receiving, we will give you the best help!
  • 🚢 Shipping>>Worldwide express shipping available.
  • 🔥98.9% of customers buy 2 or more

Upgrade Your Car (Without Breaking The Bank)

With Universal CarPlay, you can easily upgrade your car without complicated installation, saving you time and money. Connect this car radio to your smartphone and enjoy wireless access to navigation, messages, calls, music, email, notifications and more.

A2900 10.jpg
A2900 3.jpg
A2900 13.jpg
A2900 2.jpg
A2900 9.jpg
A2900 4.jpg
A2900 5.jpg
A2900 7.jpg
A2900 8.jpg
A2900 12.jpg
A2900 11.jpg
A2900 19.jpg
A2900 1.jpg

Features
●Carplay: You can use wired connection to carplay, connect to Apple mobile phone, access mobile phone address book, mail, notification, map navigation, music, video and other information, and realize voice control.
●Wired Android auto: The wired Android auto car system can closely integrate the user's Android phone and player, and realize navigation, make calls, send and receive information, listen to music and other operations through data cable connection,Applicable to Android phones (not applicable to Huawei brand phones)
●Screen: 7-inch high-definition video playback
●Mirror Link: Support Android/ Iphone Mirror Link,through phone's original USB line Can synchronized to the on-board screen,which can support Apple mobile phone 13.4 version, Android mobile phone version 10.1. More than this version or does not support mobile phones, need to upgrade the software after the original factory debugging
●Built-in Bluetooth function, can connect to phone, and handsfree calling, more safer when driving car,bluetooth music play
●FM radio: You can listen to real-time traffic, news boradcasts, weather forecasts, etc receiver 18 preset Store Function
●Support Steering wheel control function : Quickly switch functions which you want with your car's steering wheel,more convenient
● Rear view camera input function(optional):Need to choose the camera, if connect to a car backup camera, the car stereo monitor will turn to rear view reversing details automatically(require optional)
●AUX audio input interface supports external MP3, mobile phones, music players, etc.

 

Specifications:
System:WINCE
Size:7 inch
Voltage:12V
Audio Amplifier:TDA7388
Bluetooth : 4.0
Mirror link:Android/IOS
Screen Resolution:1024*600
Output Power: 4*45Watts
USB Interface: USB2.0
Radio Range:FM 87.5-108.0MHZ (Europe)
Operating temperature:-10℃ ~  60℃
External microphone: support
Audio format:MP3/WMA/APE/FLAC/WAV/OGG
Videoformat:RM/RMVB/DVD/(VOB)/VCD(DAT)/MP1/MP2/MP4/H263/H264/FLV/3GP/SWF/AVI/ASF/MIPEG
Language:English/Chinese/Portuguese/Spanish/Russian/German/Italian/Persian/French/Japanese/Turkish/Czech


Package Included:
1 x Car MP5 Player
1 x Power Cable
2 x USB Cable
1 x External microp-hone interface
1 x microphone
1 x  User Manual

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.