Charging Case Replacement Compatible with Beats Studio Buds/Buds+ Charging Case, Charging Case for Beats Studio Buds+ Charger Case Alternative with Bluetooth Pairing Button

$34.99
Quantity
people are viewing this right now

Description

Product Description:

  • [Seamless Bluetooth Pairing] Experience the convenience of one-touch pairing with the Beats Studio Buds/Buds+ charging case. Designed exclusively for Beats Studio Buds and Beats Studio Buds+, it ensures a hassle-free connection to both for Apple and Android devices via Bluetooth.
  • [Portable and Pocket-Friendly Design] The sleek, compact form factor of the Beats Studio Buds/Buds+ charging case makes it perfect for on-the-go use. Its pocket-sized design allows you to carry it anywhere, providing the freedom of wireless charging wherever you go.
  • [LED Battery Indicator] Stay informed with the wireless charging case's LED battery indicator. It provides a clear view of the battery levels for both the case and the earbuds, ensuring you're always aware of the charging status.
  • [Easy Connectivity] The case for Beats Studio Buds/Buds+ charging case offers a simple and straightforward Bluetooth connection process, making it incredibly easy to pair with your Apple or Android device for an instant audio experience.
  • [Reliable Customer Support] We stand by the quality of our products. Should you encounter any issues or have any questions regarding your Beats Studio Buds/Buds+ , our after-sales service team is readily available to assist you promptly.

Charging Case for Beats Studio Buds/ Beats Studio Buds+ beats earbuds case

How to link

  1. Activate Bluetooth setting on the phonein"Settings-Bluetooth-On"
  2. Put your earbuds into the chargingcase, long press the sync button untilthe green flashing.
  3. When the pop-up shows the earbuds name you set for,click"connecting" and wait for the process to complete
  4. Reopen the case again, when the phone is coonectedwith yourearbuds,take out and wear them.

Visible LED Indicator

White light

  • Flashing white light Bluetoothis pairing.B
  • attery level is more than 40%

Orange light

  • Charging orange light isalways on, full off.
  • Charge level is less than 40%.

Replacement Charging Case for Beats Studio Buds/Studio Buds+, Compatible with Studio Buds Charging Case with Bluetooth Pairing (NOT Included Earbuds)

  • Our charging box is an ideal backup charger case and replacement of original charger box, specially design for Beats Buds. With our alternative charging case, you can enjoy the music by earphones at anywhere and anytime without low battery anxiety.
  • Please Check Earbuds Model Before buy: ONLY FOR Original Beats Studio Buds/Beats Studio Buds+ (NOT FOR earbuds made by a third party), NOT FOR Beats Fit Pro / Powerbeats Pro or any other Headphones.
  • Features:
  • Support Bluetooth Pairing with i phone and with android phones. 660mAh Capacity can fully charge earbuds above2- 3 times.
  • ONLY Support wired charging, and And it only supports charging the headphone case using the USB-C port charging cable.(Charging cable not included)
  • lightweight, compact and easy for carry.
  • Specifications:
  • Type-C Input: 5V / 0.3A
  • Capacity: 660mAh
  • Size: 7.2 cm×5 cm×2.5 cm (2.83 inch×2 inch×1 inch)
  • Package Information: 1×for Beats Studio Buds/Beats Studio Buds+ charging case , 1×Instruction 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.