30-Pin Bluetooth Adapter with Aptx-HD
30-Pin Bluetooth Adapter with Aptx-HD

30-Pin Bluetooth Adapter with Aptx-HD

GITANK Bluetooth 5.0 aptX-HD Car Adapter for 30-Pin iPod/iPhone Music Interface Compatible with Audi, Volkswagen, Mercedes-Benz, BMW CIC systems and Motorcycles (AMI iPod iPhone Cable NOT Included)
Support steering wheel control for songs
OEM screen displays song information
High-definition lossless audio
USB Port, Plug Pair and Play
$65.99 $89.99 Save $24.00
Quantity
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '5cdde4c8-a7c4-48c6-be5c-2e1df70006d2'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = '0f8a8f68-ec37-4ffe-a5a9-771dfae35f30'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == '0f8a8f68-ec37-4ffe-a5a9-771dfae35f30' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = '0f8a8f68-ec37-4ffe-a5a9-771dfae35f30'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("Added successfully"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("Added successfully"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);

About this item: 

  • [Upgrade Your Vehicle with Bluetooth Music Streaming] Compatible with iPod music interfaces for multiple vehicle models, but does not support USB-iPod data cables. Compatible with Audi MMI 3G/3G+ systems (2010-2019), Volkswagen systems (2009-2020), Mercedes-Benz systems (2005-2011), and BMW CIC/CCC systems (2006-2013). Not compatible with Audi MMI 2G systems (2004-2009) or Mercedes-Benz systems (2012-2020). Does not support phone calls.
  • [Features Qualcomm CSR8675 Chipset] Utilizes the high-performance Qualcomm CSR8675 chipset for exceptional audio quality. Supports 24-bit audio processing and 120MHz DSP operations, compatible with APTX/APTX-LL/APTX-HD high-definition transmission formats.
  • [Plug-and-Play] Just plug the adapter into the factory-supplied 30-pin iPod connector cable (typically located in the glove compartment or center console, equipped with an AMI/MDI interface).Pair via Bluetooth to start streaming music. No additional installation required—enjoy wireless music streaming instantly.
  • [Supports Steering Wheel Volume Control] Adjust volume using steering wheel buttons.
  • [Supports CD Radio Controls] Control music playback via CD radio buttons. Only supports Apple Music playlist display; Spotify/Pandora playlists are not supported.
  • [Play Navigation Prompt Sound] The GITANK Bluetooth adapter supports playing navigation voice prompts through the vehicle's audio system.

Recommended Uses:

  • 2009-2020 Audi MMI 3G, 3G+.
  • 2009-2020 Audi Concert/Symphony.
  • 2005-2011 Mercedes with AMI music interface.
  • 2009-2020 VW RNS 510,VW 3G for RNS 315,VW Premium 8 systems.

Compatibility Notice: (Must read before ordering to avoid errors):

  • Certain vehicle models equipped with a 30-pin iPod connector (such as Nissan, Infiniti, and BMW) cannot power the GITANK-BT100. A separate power adapter must be purchased to supply power via the USB port.
  • GITANK-BT100 is incompatible with Audi MMI 2G systems from 2006-2009. If you have an Audi MMI 2G system, please purchase the GITANK-Audi2G model specifically designed for this system.
  • GITANK-BT100 is incompatible with Audi Enhanced Navigation systems equipped with AMI music interfaces.
  • GITANK-BT100 is incompatible with Mercedes-Benz models from 2013 - 2020.

Product Feature Notes:

  • The iPhone does not support displaying Spotify/Pandora playlists; it only supports displaying Apple Music playlists (iTunes playlists) from the iPhone. Spotify/Pandora on both iPhone and Android devices can display current track information. (Audi owners must enter the vehicle settings menu and select the [Display Track Information] option to enable track information display.)
  • This adapter supports Bluetooth music streaming only and does not support phone calls. If your vehicle is equipped with a Bluetooth phone system, the in-car Bluetooth hands-free calling and GITANK Bluetooth audio streaming can operate simultaneously. If your vehicle has Bluetooth phone functionality, ensure your phone is connected to the in-car system before pairing with GITANK.

Built-in Qualcomm CSR8675 Bluetooth 5.0 chipset and TI chip

Powered by the Qualcomm CSR8675 chipset, it delivers crystal-clear audio quality. Supporting 24-bit audio processing and a 120MHz DSP, it is compatible with APTX, APTX-LL, and APTX-HD high-quality transmission formats.

Apple Music (iTunes) playlists can be displayed on the OEM screen and dashboard

Supports displaying Apple Music(iTunes) playlists on the in-car screen. Play, pause, browse, skip, and control Apple Music playlists on your iPhone directly through the factory entertainment system.

Supports controlling songs via steering wheel buttons and CD radio buttons.

Using steering wheel buttons and CD Radio buttons controls to play, browse, skip and control Apple Music playlist.

Auto-connect.

After initial use, this Bluetooth device will automatically reconnect to your mobile device after the engine is started.

Unlimited Streaming

GITANK plays any audio source accessible via Bluetooth, adding streaming music capabilities to your vehicle so you can enjoy the beautiful melodies of Hi-Fi music. Instantly stream premium high-resolution music services like Tidal, Spotify, Qobuz, and Pandora, along with internet radio and podcasts—all delivered in Hi-Fi quality.

Plug,Pari and Play

Plug

Just plug GITANK with your AMI or MDI Port.

Pair

Open your phone's Bluetooth settings, search for the Bluetooth device ID“GITANK”and tap to pair.

Play

Every time you get in the car, music starts playing automatically. Enjoy a seamless music streaming experience.