Motion X500 | Surround Sound Bluetooth Speaker (2024)

The World’s Most Portable Spatial Audio Speaker

  • Immersive Spatial Audio:3 drivers deliver sound all around you, so you'll feel like your favorite artist is right there in front of you, every time you press play.
  • 3X More Detail:Motion X500 features Wireless Hi-Res certified sound, which lets you hear your favorite songs as they were meant to be heard.
  • 3 Fresh Finishes to Match Any Style:Get quality sound in a color you love with a choice of three finishes: Black Deluxe, Pink Punch, and Glitzy Blue.
  • Great Sound, Portable Size:Motion X500 portable Bluetooth speaker lets you take immersive spatial audio with 3X more detail wherever you go.
  • Fully Waterproof:With IPX7 protection, you can enjoy worry-free listening by the pool, at the beach, or even if it's raining.

2. Can I redeem multiple discount codes?

No. Discount codes cannot be combined.Only one code can be applied per order.

3. Why is my discount code invalid?

1) The discount code is not applicable to the specific items you want to buy

2) The discount code wasn't entered correctly

3) The discount code has expired

4) The discount code is not from soundcore's official website

If you have any questions,please feel free to reach out to our customer service team:service@soundcore.com

"); } function getMemberOrQuerySaving({price, sku, codeSave = 0}) { const memberDiscount = ShopMetafields.discountMember const memberWeekDiscount = ShopMetafields.discountMemberWeek const memberJoined = sessionStorage.getItem('memberJoined') const memberDiscountFromScript = ShopMetafields.scriptDiscountMember const queryDiscount = ShopMetafields.discountQuery const queryDiscountFromScript = ShopMetafields.scriptDiscountQuery let save; let withBundleOrGift = $('.product-free-gift').length || $('.product-bundle').length if (withBundleOrGift) { return save } if ( memberDiscount?.active && Boolean("") && !memberDiscountFromScript?.excludeSkus?.includes(sku) ) { const memberSave = new Decimal(price).times(memberDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); }else if(memberWeekDiscount?.active && Boolean("") && memberJoined){ // start_ai_generated const memberSave = new Decimal(price).times(memberWeekDiscount.discount); save = new Decimal(codeSave).plus(memberSave).toNumber(); // end_ai_generated } else if ( queryDiscount?.active && !queryDiscountFromScript?.excludeSkus?.includes(sku) ) { const queryValue = getQueryVariable(queryDiscount.queryKey); if (queryValue == queryDiscount.queryValue) { const querySave = new Decimal(queryDiscount.discount).times(price); save = new Decimal(codeSave).plus(querySave).toNumber(); } } return save } function showDiscountBox(sku) { if (couponsData[sku] && couponsData[sku][0]) { let currentData = couponsData[sku][0]; ShowCode(currentData); if (window.GsapScrollTrigger) ScrollTrigger.refresh() } else { const memberOrQuerySaving = getMemberOrQuerySaving({ price: jsVariant.price, sku, }); if(memberOrQuerySaving > 0){ if ($('.product-marketing-module .product__marketing_module_coupon').length) { if ($('.product-marketing-module .product__marketing_module_coupon').data("show_discounts") === 'false') { return } } $('.sale.savings').text(`You Save: ${Shopify.formatMoney(memberOrQuerySaving)}`) } $('.couponWrapper').hide(); $('.DiscountMark').hide(); } } function ShowCode(data) { // 展示code文案 $('#couponCode').text(data.title); copyCodeTxt = data.title; // 展示折扣数值 let DiscountTxt; let DiscountedPrice; let savePrice; let price = jsVariant.price; let savingsAfterDrop = Number($('.price-container').data('savings') || 0); let currentPriceAfterDrop = Number($('.price-container').data('current-price') || 0) price = currentPriceAfterDrop || price let codeMoney = 0 if (data.value_type === "fixed_amount") { DiscountTxt = data.value_style; DiscountedPrice = Shopify.formatMoney(price + Number(data.value) * 100) savePrice = Math.abs(data.value) * 100 codeMoney = Math.abs(data.value) } else if (data.value_type === "percentage") { const savePriceValue = price * Math.abs(Number(data.value) / 100) DiscountTxt = Math.abs(parseInt(data.value)) + "%"; DiscountedPrice = Shopify.formatMoney(price - savePriceValue); savePrice = savePriceValue; }; $('.couponWrapper').data('code-money', codeMoney) $('#DiscountTxt').text(DiscountTxt); $('#DiscountMarkTxt').text(DiscountTxt); // 失效时间判断 let endsTime = data.ends_at ? new Date(data.ends_at).valueOf() : null; if (endsTime) { timeLine = setInterval(function() { nowTime = new Date().getTime(); let distance = endsTime - nowTime; if (distance < 0) { clearInterval(timeLine); $('.couponWrapper').hide(); $('.DiscountMark').hide(); $('.product__information .modal_price .salePrice').remove(); $('.product__information .current_price').removeClass("UnderscorePrice"); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 let days = Math.floor(distance / (1000 * 60 * 60 * 24)); let hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); let minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); let seconds = Math.floor((distance % (1000 * 60)) / 1000); if(days >= 7) { $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Offer Ends soon.'); } else if (days === 1) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Day ${hours}:${minutes}:${seconds}`); } else if (days === 0) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`Today ${hours}:${minutes}:${seconds}`); } else { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Days ${hours}:${minutes}:${seconds}`); } } }, 1000); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Hurry! Offer Ends soon.'); } const memberOrQuerySaving = getMemberOrQuerySaving({ price: new Decimal(price).minus(savePrice), codeSave: savePrice, sku: data.sku, }); if ($('.product-marketing-module .product__marketing_module_coupon').length) { if (!$('.product-marketing-module .product__marketing_module_coupon').data("show_discounts")) { return } } if(memberOrQuerySaving > 0) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(memberOrQuerySaving))}`) } else if (!savingsAfterDrop) { if ($('.product__information .modal_price .salePrice').length == 0 || $('.product__information .current_price .salePrice').text() != DiscountedPrice) { $('.sale.savings').text(`You Save: ${Shopify.formatMoney(Math.floor(savePrice))}`) } } } function copyCouponCode() { execCoy(copyCodeTxt); $('.copyTextReplace').show(); $('.copyText').hide(); setInterval(function(){ $('.copyTextReplace').hide(); $('.copyText').show(); }, 3000); } function execCoy(text) { const input = document.createElement('INPUT'); input.style.opacity = 0; input.style.position = 'absolute'; input.style.left = '-100000px'; document.body.appendChild(input); input.value = text; input.select(); input.setSelectionRange(0, text.length); document.execCommand('copy'); document.body.removeChild(input); return true; }})

Bonus Gift

Motion X500 | Surround Sound Bluetooth Speaker (15)

Product Overview

Motion X500 | Surround Sound Bluetooth Speaker (16)

Free 6-month Warranty

$19.99

Free Gift

$19.99

$229.99

Motion X500 | Surround Sound Bluetooth Speaker (17)

soundcore guarantees that we will refund you the difference if you find a lower price on the soundcore website within 30 days of your purchase.

Your purchase must have been made within the last 30 days. You must email us a screenshot of the lower price. The refund is only applicable during the promotional period.

Email me when available

Leave your email address and we will notify you when the product is back in stock.

Motion X500 | Surround Sound Bluetooth Speaker

(Optional) Join our eufy email list to get special offers and more.

  • Immersive Spatial Audio:3 drivers deliver sound all around you, so you'll feel like your favorite artist is right there in front of you, every time you press play.
  • 3X More Detail:Motion X500 features Wireless Hi-Res certified sound, which lets you hear your favorite songs as they were meant to be heard.
  • 3 Fresh Finishes to Match Any Style:Get quality sound in a color you love with a choice of three finishes: Black Deluxe, Pink Punch, and Glitzy Blue.
  • Great Sound, Portable Size:Motion X500 portable Bluetooth speaker lets you take immersive spatial audio with 3X more detail wherever you go.
  • Fully Waterproof:With IPX7 protection, you can enjoy worry-free listening by the pool, at the beach, or even if it's raining.

Order Support

Fast, Free Shipping

30-Day Money-Back Guarantee

Hassle-Free Warranty

Lifetime Customer Support

Delivery & Payment

Motion X500 | Surround Sound Bluetooth Speaker (19)

Motion X500 | Surround Sound Bluetooth Speaker (2024)

FAQs

Motion X500 | Surround Sound Bluetooth Speaker? ›

Press and hold the Bluetooth button on both speakers for 2 seconds until the light flashes white. 4. Wait for 5 to 8 seconds, and you will hear sound. When the speakers are successfully paired together, the primary speaker will have one steady blue light while the one with a steady white light is the secondary speaker.

How do I connect Soundcore Motion Plus to Bluetooth? ›

Press and hold the Bluetooth button on both speakers for 2 seconds until the light flashes white. 4. Wait for 5 to 8 seconds, and you will hear sound. When the speakers are successfully paired together, the primary speaker will have one steady blue light while the one with a steady white light is the secondary speaker.

What Bluetooth codec does Soundcore motion plus use? ›

What Bluetooth codecs does the Anker Soundcore Motion+ support? The Anker Soundcore Motion+ uses Bluetooth 5.0 with SBC and aptX support.

Does Soundcore motion boom have a microphone? ›

Just Open and Use: Record with the wireless lavalier microphone right away with an embedded touchscreen to customize your settings.

Why won't my Soundcore connect to Bluetooth? ›

If you fail to connect the speaker to your device, you can try the following steps: - Confirm the speaker is fully charged and it's not paired with other devices. - Forget all Bluetooth pairing records on your device. - Reboot your speaker and your device.

What is the #1 Bluetooth speaker? ›

A few at the top of our list are the Soundcore by Anker Boom 2, Bose SoundLink Flex, Bose SoundLink Max and Tribit StormBox Flow. Some of the speakers on this list are premium models that are fairly pricey -- but I've also included several budget picks, some of which cost less than $50.

Is there a difference between Bluetooth and wireless speakers? ›

Here's the biggest difference: With Bluetooth, you stream music from your phone to a speaker. A Wi-Fi speaker accesses music from the internet, or from a computer on your home network. You can control a Wi-Fi speaker with your smartphone. You just have to stay within range of your Wi-Fi router's signal.

Which is better, a soundbar or a Bluetooth speaker? ›

If you're looking for portability and flexibility, a Bluetooth speaker is the way to go. However, if you're aiming to enhance your TV watching experience and want superior sound quality at home, a soundbar is the better choice.

Is Soundcore Motion Boom loud? ›

Plus, it gets plenty loud, so you can fill larger spaces like your backyard with sound. Gets loud. Portable design. IP67 rating for dust and water resistance.

How many watts is soundcore motion? ›

Bluetooth 5.0
soundcore Boom 2 plus Outdoor SpeakerSoundcore Motion Boom
Add To BasketAdd To Basket
Power140W (100W Standard)30W
Soundcore AppCustomizable Pro EQCustomizable EQ
Playtime20 Hours24 Hours
10 more rows

What is the difference between soundcore select pro and motion boom? ›

With Party mode and the LED lights, the select pro are more of a party speaker. (you can connect multiple speakers and put them in different rooms for a party effect.) The Motion Boom is TWS so could connect two and have stereo quality sound in a larger room.

How do I reset Soundcore motion+ Bluetooth? ›

Press and hold both Bluetooth and Volume+ buttons at the same time for about 8 -10 seconds and a voice prompt instructs you that the speaker has restarted. If you have additional questions, please contact Soundcore customer support at service@soundcore.com for further assistance.

Top Articles
Latest Posts
Article information

Author: Kareem Mueller DO

Last Updated:

Views: 6061

Rating: 4.6 / 5 (66 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Kareem Mueller DO

Birthday: 1997-01-04

Address: Apt. 156 12935 Runolfsdottir Mission, Greenfort, MN 74384-6749

Phone: +16704982844747

Job: Corporate Administration Planner

Hobby: Mountain biking, Jewelry making, Stone skipping, Lacemaking, Knife making, Scrapbooking, Letterboxing

Introduction: My name is Kareem Mueller DO, I am a vivacious, super, thoughtful, excited, handsome, beautiful, combative person who loves writing and wants to share my knowledge and understanding with you.