Motion X600 | High-Quality Sound Wireless Speaker (2024)

Welcome to soundcore!

10

%

OFF

Get an exclusive 10% off coupon when you subscribe to our newsletter.

Code:

Copy

Use your exclusive code at checkout to receive a 10% discount on your purchase.

Applicable for all soundcore products. (Excluding accessories and souvenirs).

This coupon can not be used in conjunction with other discounts or promotions.

This code is only valid for 14 days after you receive it.

Motion X600 | High-Quality Sound Wireless Speaker (1)

Motion X600 | High-Quality Sound Wireless Speaker (2)

Motion X600 | High-Quality Sound Wireless Speaker (3)
Motion X600 | High-Quality Sound Wireless Speaker (4)
Motion X600 | High-Quality Sound Wireless Speaker (5)
Motion X600 | High-Quality Sound Wireless Speaker (6)
Motion X600 | High-Quality Sound Wireless Speaker (7)
Motion X600 | High-Quality Sound Wireless Speaker (8)
Motion X600 | High-Quality Sound Wireless Speaker (9)
Motion X600 | High-Quality Sound Wireless Speaker (10)
Motion X600 | High-Quality Sound Wireless Speaker (11)
Motion X600 | High-Quality Sound Wireless Speaker (12)
Motion X600 | High-Quality Sound Wireless Speaker (13)
Motion X600 | High-Quality Sound Wireless Speaker (14)
Motion X600 | High-Quality Sound Wireless Speaker (15)
Motion X600 | High-Quality Sound Wireless Speaker (16)

The World's First Portable High-Fidelity Speaker

  • Immersive Spatial Audio:Inspired by theater acoustics, Motion X600 has 5 drivers and5 amplifiers that are positioned to deliver sound all around you. Feel like you're in the room with your favorite artist, every time you press play.
  • 50W Room-Filling Sound:Whether you're having a party or just enjoying your favorite tunes, the 50W sound will fill any space with rich, high-quality sound that brings music to life.
  • Take lmmersive Music Anywhere:Portable and lightweight, Motion X600 is easy to carry between rooms to transform any part of your home into an immersive listening space.
  • 12-Hour Playtime:Keep listening to music and podcasts for days at a time - with zero battery anxiety.
  • Fully Waterproof:Features IPX7 waterproof protection so you can simply relax and listen without worrying about the speaker getting wet.
  • Note: For peak performance, please use the soundcoreappand update to the latest firmware.

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('Sale Ends in.'); } 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('Sale Ends in.'); } 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; }})

Free Gift

Motion X600 | High-Quality Sound Wireless Speaker (17)

Product Overview

Motion X600 | High-Quality Sound Wireless Speaker (18)

Free 6-month Warranty

19,99€

Free

19,99€

199,99€

Motion X600 | High-Quality Sound Wireless Speaker (19)

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 X600 | High-Quality Sound Wireless Speaker

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

  • Immersive Spatial Audio:Inspired by theater acoustics, Motion X600 has 5 drivers and5 amplifiers that are positioned to deliver sound all around you. Feel like you're in the room with your favorite artist, every time you press play.
  • 50W Room-Filling Sound:Whether you're having a party or just enjoying your favorite tunes, the 50W sound will fill any space with rich, high-quality sound that brings music to life.
  • Take lmmersive Music Anywhere:Portable and lightweight, Motion X600 is easy to carry between rooms to transform any part of your home into an immersive listening space.
  • 12-Hour Playtime:Keep listening to music and podcasts for days at a time - with zero battery anxiety.
  • Fully Waterproof:Features IPX7 waterproof protection so you can simply relax and listen without worrying about the speaker getting wet.
  • Note: For peak performance, please use the soundcoreappand update to the latest firmware.

Order Support

Fast Shipping

30-Day Money-Back Guarantee

Hassle-Free Warranty

Lifetime Customer Support

Delivery & Payment

Motion X600 | High-Quality Sound Wireless Speaker (21)

Motion X600 | High-Quality Sound Wireless Speaker

"; } const vLink = `/products/${vSkuHandle}` return `
  • `; }).join(''); if (custom_variants.sku.indexOf(sku) > -1) { $('.custom_variants').html(`${curColor}
      ${dom}
    `); $('.custom_variants').removeClass('swap--visible'); } $(".advantage-nav li").on("click", function() { var index = $(this).index(); $(this).addClass("active").siblings().removeClass("active"); $(".info_iconList").eq(index).fadeIn().siblings().hide(); }); $('.icon_list_item').click(function() { const modalContent = $(this).data('txtmodel') openTxtModal(`${modalContent}`) }); function render_description (sku) { var json_s = `{"description_A3130031": ""}`; var description = json_s ? JSON.parse(json_s) : {}; var variant_description = description[`description_${sku}`]; if (variant_description) { const txt = variant_description; const $target = $('.product-7332816584880 .product__information .description'); const dom = $target.html(txt).text(); $target.html(dom); } else { $('.product-7332816584880 .product__information .description').html(`
    • Immersive Spatial Audio:Inspired by theater acoustics, Motion X600 has 5 drivers and5 amplifiers that are positioned to deliver sound all around you. Feel like you're in the room with your favorite artist, every time you press play.
    • 50W Room-Filling Sound:Whether you're having a party or just enjoying your favorite tunes, the 50W sound will fill any space with rich, high-quality sound that brings music to life.
    • Take lmmersive Music Anywhere:Portable and lightweight, Motion X600 is easy to carry between rooms to transform any part of your home into an immersive listening space.
    • 12-Hour Playtime:Keep listening to music and podcasts for days at a time - with zero battery anxiety.
    • Fully Waterproof:Features IPX7 waterproof protection so you can simply relax and listen without worrying about the speaker getting wet.
    • Note: For peak performance, please use the soundcoreappand update to the latest firmware.

    `); } } render_description(`A3130031`); $('.product-form-container .swatch_options .swatch-element').on('click', function() { var sku = $(this).data('sku'); render_description(sku); var $product = $('.product-7332816584880'); var $productForm = $('.product_form, .shopify-product-form', $product); var JSONData = $productForm.data('product'); var available = JSONData.variants.some(v => { if (v.sku === sku) return v.available && v.price != 999999999; return false; }) if (available) { $('.out-stock-notify').css('display', 'none'); $('.out-stock-pop').css('display', 'none'); $('.notify-btn').css('display', 'none'); } else { $('.out-stock-notify').removeClass('swap--visible'); $('.out-stock-notify').css('display', 'block'); $('.out-stock-pop').css('display', 'block'); $('.notify-btn').css('display', 'block'); } }) })

    Motion X600 | High-Quality Sound Wireless Speaker (23) Motion X600 | High-Quality Sound Wireless Speaker (24)

    Motion X600 | High-Quality Sound Wireless Speaker (25)

    Motion X600 | High-Quality Sound Wireless Speaker (26)

    Motion X600 | High-Quality Sound Wireless Speaker (29)

    Motion X600 | High-Quality Sound Wireless Speaker (30)

    Sound That Surrounds You

    An upward-firing driver creates a multi-dimensional soundstage that moves around you.

    Motion X600 | High-Quality Sound Wireless Speaker (31)

    Motion X600 | High-Quality Sound Wireless Speaker (32)

    Hear Every Detail

    High-end DSP delivers sound that's 8 times better* than our previous speakers.

    • Become Immersed in Music
    • Sound That Surrounds You
    • Hear Every Detail

    Become Immersed in Music

    Sound diffuses vertically and horizontally to fill any space.

    Sound That Surrounds You

    An upward-firing driver creates a multi-dimensional soundstage that moves around you.

    Hear Every Detail

    High-end DSP delivers sound that's 8 times better* than our previous speakers.

    Motion X600 | High-Quality Sound Wireless Speaker (33)

    Motion X600 | High-Quality Sound Wireless Speaker (34)

    Motion X600 | High-Quality Sound Wireless Speaker (35)

    • Become Immersed in Music
    • Sound That Surrounds You
    • Hear Every Detail

    Motion X600 | High-Quality Sound Wireless Speaker (36)

    Motion X600 | High-Quality Sound Wireless Speaker (37)

    Motion X600 | High-Quality Sound Wireless Speaker (38)

    Motion X600 | High-Quality Sound Wireless Speaker (39)

    Motion X600 | High-Quality Sound Wireless Speaker (40)

    Motion X600 | High-Quality Sound Wireless Speaker (41)

    Customizable EQ

    Find the sound that suits you with one flick of your finger.

    • Hi-Res Audio
    • Hear Every Detail
    • Customizable EQ

    Customizable EQ

    Find the sound that suits you with one flick of your finger.

    Motion X600 | High-Quality Sound Wireless Speaker (42)

    Motion X600 | High-Quality Sound Wireless Speaker (43)

    Motion X600 | High-Quality Sound Wireless Speaker (44)

    • Hi-Res Audio
    • Hear Every Detail
    • Customizable EQ

    Motion X600 | High-Quality Sound Wireless Speaker (45)

    Motion X600 | High-Quality Sound Wireless Speaker (46)

    Listen for Longer

    Get 12 hours of non-stop music from a single charge.

    Motion X600 | High-Quality Sound Wireless Speaker (47)

    Motion X600 | High-Quality Sound Wireless Speaker (48)

    IPX7 Waterproof

    Don't let a little water stand between you and your favorite tunes.

    Motion X600 | High-Quality Sound Wireless Speaker (49)

    Motion X600 | High-Quality Sound Wireless Speaker (50)

    Room-Filling Sound

    The 50W output is powerful enough to suit any space.

    • Listen for Longer
    • IPX7 Waterproof
    • Room-Filling Sound

    Listen for Longer

    Get 12 hours of non-stop music from a single charge.

    IPX7 Waterproof

    Don't let a little water stand between you and your favorite tunes.

    Room-Filling Sound

    The 50W output is powerful enough to suit any space.

    Motion X600 | High-Quality Sound Wireless Speaker (51)

    Motion X600 | High-Quality Sound Wireless Speaker (52)

    Motion X600 | High-Quality Sound Wireless Speaker (53)

    • Listen for Longer
    • IPX7 Waterproof
    • Room-Filling Sound

    Motion X600 | High-Quality Sound Wireless Speaker (54)

    Upward-Firing Driver

    An upward-firing driver fills any space with sound to surround you with music.

    3D Grid

    The distinctive metal mesh design brings a rugged, industrial feel to any space.

    Aluminum Handle

    The aluminum handle features a tactile grooved design for a comfortable grip.

    Motion X600 | High-Quality Sound Wireless Speaker (55)

    Motion X600 | High-Quality Sound Wireless Speaker (56)

    Motion X600 | High-Quality Sound Wireless Speaker (57)

    Upward-Firing Driver

    An upward-firing driver fills any space with sound to surround you with music.

    3D Grid

    The distinctive metal mesh design brings a rugged, industrial feel to any space.

    Aluminum Handle

    The aluminum handle features a tactile grooved design for a comfortable grip.

    FAQ

    • General
    • App Related
    • Spatial Audio Related
    • LDAC Related
    • Bluetooth Related
    • EQ Related
    • Documents & Drivers
    • What's in the box?

      Motion X600 Speaker
      60 cm USB-C to C Cable
      Safety Card
      Quick Start Guide

      Note: Aux cable and wall charger are not included!

    • How long does it take to charge Motion X600?

      It takes around 6 hours to charge with a certified 5V/3A wall charger.

    • How do I reset Motion X600?

      Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

    • Is Motion X600 waterproof?

      Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

    • Why is the power button recessed?

      The recessed design make it easy to use the button in low-light and dark environments.

    • Does Motion X600 have a built-in microphone?

      Yes.

    • Can I get stereo sound when using one Motion X600?

      Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

    • Why is the battery life less than 12 hours?

      12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • Where can I download the soundcore app?

      Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

      1. Customizable EQ
      Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

      2. LDAC Mode
      Use the app to switch to LDAC mode (only available on Android 8.0 and above).
      Motion X600 | High-Quality Sound Wireless Speaker (58)

    • How do I turn off Motion X600's voice prompts?

      1. Connect your device to Motion X600.
      2. Download and open the soundcore app.
      3. Press the top right corner to access more options.
      4. Turn off voice prompts.

    • How do I update Motion X600's firmware?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app, then press Update Firmware.
      3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
      4. Motion X600 will restart automatically after updating successfully.

    • Does spatial audio require a specific music format?

      No.

    • What is spatial audio and how do I turn it on?

      Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • What is LDAC?

      LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

      Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

    • How do I use LDAC?

      On a device powered by Android 8.0 or above, do the following:
      1. Open the soundcore app.
      2. Go to the Settings
      3. Click on Sound Mode
      4. Select Preferred Audio Quality and switch to LDAC codec.

      Notes:
      • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
      • LDAC provides higher quality sound but increases power consumption and reduces playtime.
      • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

    • Why do some devices experience interrupted sound when using the LDAC function?

      After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

      If you would like to select 990 kbps LDAC, we recommend following these steps:

      1. Turn off Wi-Fi on your Android device.
      2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
      3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
      4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
      5. Play local music files.

    • How can I TWS pair two Motion X600 speakers at the same time?

      Method 1.
      1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
      2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
      3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
      5. The master speaker is the one with the blue light.
      6. Use the master speaker to pair with your device.

      Method 2.
      1. Long press the power button to start both speakers
      2. Connect either speaker with your Bluetooth device.
      3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

      Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

    • How does stereo sound work during TWS pairing?

      When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

    • I can't detect Motion X600 via Bluetooth. What should I do?

      1. Fully charge the speaker.
      2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
      3. Turn your device and your device's Bluetooth off and on.
      4. Clear all pairing records on your device.
      5. Restart your speaker and reconnect to it.
      6. Try the speaker with different devices if possible.

    • How do I use the EQ?

      Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

    • Can I increase the bass on my Motion X600?

      You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

    • How can I share a custom EQ?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app.
      3. Click Equalizer.
      4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

      Note: To use the sharing function, you need to log in to your soundcore account first.

    • How do I import a custom EQ that someone has shared with me?

      Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
      Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
      Click "Yes" and then click "Import".

      Method 2: Scan the QR Code
      Open the soundcore app and pair with Motion X600.
      Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • QSG

      A3130-QSG

      2023-05-08

    • Manual

      A3130-Manual

      2023-05-08

    • General

      • What's in the box?

        Motion X600 Speaker
        60 cm USB-C to C Cable
        Safety Card
        Quick Start Guide

        Note: Aux cable and wall charger are not included!

      • How long does it take to charge Motion X600?

        It takes around 6 hours to charge with a certified 5V/3A wall charger.

      • How do I reset Motion X600?

        Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

      • Is Motion X600 waterproof?

        Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

      • Why is the power button recessed?

        The recessed design make it easy to use the button in low-light and dark environments.

      • Does Motion X600 have a built-in microphone?

        Yes.

      • Can I get stereo sound when using one Motion X600?

        Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

      • Why is the battery life less than 12 hours?

        12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • App Related

      • Where can I download the soundcore app?

        Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

        1. Customizable EQ
        Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

        2. LDAC Mode
        Use the app to switch to LDAC mode (only available on Android 8.0 and above).
        Motion X600 | High-Quality Sound Wireless Speaker (59)

      • How do I turn off Motion X600's voice prompts?

        1. Connect your device to Motion X600.
        2. Download and open the soundcore app.
        3. Press the top right corner to access more options.
        4. Turn off voice prompts.

      • How do I update Motion X600's firmware?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app, then press Update Firmware.
        3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
        4. Motion X600 will restart automatically after updating successfully.

    • Spatial Audio Related

      • Does spatial audio require a specific music format?

        No.

      • What is spatial audio and how do I turn it on?

        Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • LDAC Related

      • What is LDAC?

        LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

        Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

      • How do I use LDAC?

        On a device powered by Android 8.0 or above, do the following:
        1. Open the soundcore app.
        2. Go to the Settings
        3. Click on Sound Mode
        4. Select Preferred Audio Quality and switch to LDAC codec.

        Notes:
        • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
        • LDAC provides higher quality sound but increases power consumption and reduces playtime.
        • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

      • Why do some devices experience interrupted sound when using the LDAC function?

        After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

        If you would like to select 990 kbps LDAC, we recommend following these steps:

        1. Turn off Wi-Fi on your Android device.
        2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
        3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
        4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
        5. Play local music files.

    • Bluetooth Related

      • How can I TWS pair two Motion X600 speakers at the same time?

        Method 1.
        1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
        2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
        3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
        5. The master speaker is the one with the blue light.
        6. Use the master speaker to pair with your device.

        Method 2.
        1. Long press the power button to start both speakers
        2. Connect either speaker with your Bluetooth device.
        3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

        Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

      • How does stereo sound work during TWS pairing?

        When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

      • I can't detect Motion X600 via Bluetooth. What should I do?

        1. Fully charge the speaker.
        2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
        3. Turn your device and your device's Bluetooth off and on.
        4. Clear all pairing records on your device.
        5. Restart your speaker and reconnect to it.
        6. Try the speaker with different devices if possible.

    • EQ Related

      • How do I use the EQ?

        Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

      • Can I increase the bass on my Motion X600?

        You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

      • How can I share a custom EQ?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app.
        3. Click Equalizer.
        4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

        Note: To use the sharing function, you need to log in to your soundcore account first.

      • How do I import a custom EQ that someone has shared with me?

        Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
        Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
        Click "Yes" and then click "Import".

        Method 2: Scan the QR Code
        Open the soundcore app and pair with Motion X600.
        Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • Documents & Drivers

      • QSG

        A3130-QSG

        2023-05-08

      • Manual

        A3130-Manual

        2023-05-08

    • General
    • App Related
    • Spatial Audio Related
    • LDAC Related
    • Bluetooth Related
    • EQ Related
    • Documents & Drivers
    • What's in the box?

      Motion X600 Speaker
      60 cm USB-C to C Cable
      Safety Card
      Quick Start Guide

      Note: Aux cable and wall charger are not included!

    • How long does it take to charge Motion X600?

      It takes around 6 hours to charge with a certified 5V/3A wall charger.

    • How do I reset Motion X600?

      Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

    • Is Motion X600 waterproof?

      Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

    • Why is the power button recessed?

      The recessed design make it easy to use the button in low-light and dark environments.

    • Does Motion X600 have a built-in microphone?

      Yes.

    • Can I get stereo sound when using one Motion X600?

      Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

    • Why is the battery life less than 12 hours?

      12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • Where can I download the soundcore app?

      Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

      1. Customizable EQ
      Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

      2. LDAC Mode
      Use the app to switch to LDAC mode (only available on Android 8.0 and above).
      Motion X600 | High-Quality Sound Wireless Speaker (60)

    • How do I turn off Motion X600's voice prompts?

      1. Connect your device to Motion X600.
      2. Download and open the soundcore app.
      3. Press the top right corner to access more options.
      4. Turn off voice prompts.

    • How do I update Motion X600's firmware?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app, then press Update Firmware.
      3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
      4. Motion X600 will restart automatically after updating successfully.

    • Does spatial audio require a specific music format?

      No.

    • What is spatial audio and how do I turn it on?

      Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • What is LDAC?

      LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

      Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

    • How do I use LDAC?

      On a device powered by Android 8.0 or above, do the following:
      1. Open the soundcore app.
      2. Go to the Settings
      3. Click on Sound Mode
      4. Select Preferred Audio Quality and switch to LDAC codec.

      Notes:
      • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
      • LDAC provides higher quality sound but increases power consumption and reduces playtime.
      • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

    • Why do some devices experience interrupted sound when using the LDAC function?

      After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

      If you would like to select 990 kbps LDAC, we recommend following these steps:

      1. Turn off Wi-Fi on your Android device.
      2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
      3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
      4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
      5. Play local music files.

    • How can I TWS pair two Motion X600 speakers at the same time?

      Method 1.
      1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
      2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
      3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
      5. The master speaker is the one with the blue light.
      6. Use the master speaker to pair with your device.

      Method 2.
      1. Long press the power button to start both speakers
      2. Connect either speaker with your Bluetooth device.
      3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
      4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

      Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

    • How does stereo sound work during TWS pairing?

      When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

    • I can't detect Motion X600 via Bluetooth. What should I do?

      1. Fully charge the speaker.
      2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
      3. Turn your device and your device's Bluetooth off and on.
      4. Clear all pairing records on your device.
      5. Restart your speaker and reconnect to it.
      6. Try the speaker with different devices if possible.

    • How do I use the EQ?

      Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

    • Can I increase the bass on my Motion X600?

      You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

    • How can I share a custom EQ?

      1. Download the soundcore app.
      2. Pair Motion X600 with the soundcore app.
      3. Click Equalizer.
      4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

      Note: To use the sharing function, you need to log in to your soundcore account first.

    • How do I import a custom EQ that someone has shared with me?

      Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
      Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
      Click "Yes" and then click "Import".

      Method 2: Scan the QR Code
      Open the soundcore app and pair with Motion X600.
      Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • QSG

      A3130-QSG

      2023-05-08

    • Manual

      A3130-Manual

      2023-05-08

    • General

      • What's in the box?

        Motion X600 Speaker
        60 cm USB-C to C Cable
        Safety Card
        Quick Start Guide

        Note: Aux cable and wall charger are not included!

      • How long does it take to charge Motion X600?

        It takes around 6 hours to charge with a certified 5V/3A wall charger.

      • How do I reset Motion X600?

        Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.

      • Is Motion X600 waterproof?

        Motion X600 supports IPX7 waterproofing, but before submerging it in water, it is necessary to ensure that the waterproof cover on the back is securely fastened.

      • Why is the power button recessed?

        The recessed design make it easy to use the button in low-light and dark environments.

      • Does Motion X600 have a built-in microphone?

        Yes.

      • Can I get stereo sound when using one Motion X600?

        Yes, you can get the stereo sound with single Motion X600 speaker. The left side plays left channel, the right side plays right channel.

      • Why is the battery life less than 12 hours?

        12-hour battery life is based on measurements taken at 1/4 power and with Bass Mode off. The actual battery life may vary depending on factors such as the type of content being played, custom EQ settings, and volume level.

    • App Related

      • Where can I download the soundcore app?

        Download the soundcore app from Google Play, the Apple App Store, or by scanning the QR code below, then you can experience the full range of Motion X600's features, including:

        1. Customizable EQ
        Customize the Pro EQ to get the sound you want for any style of music. You can also share your customized EQ with friends.

        2. LDAC Mode
        Use the app to switch to LDAC mode (only available on Android 8.0 and above).
        Motion X600 | High-Quality Sound Wireless Speaker (61)

      • How do I turn off Motion X600's voice prompts?

        1. Connect your device to Motion X600.
        2. Download and open the soundcore app.
        3. Press the top right corner to access more options.
        4. Turn off voice prompts.

      • How do I update Motion X600's firmware?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app, then press Update Firmware.
        3. Do not use your phone while the firmware is updating, except if you've set the soundcore app to run in the background.
        4. Motion X600 will restart automatically after updating successfully.

    • Spatial Audio Related

      • Does spatial audio require a specific music format?

        No.

      • What is spatial audio and how do I turn it on?

        Spatial audio places sound all around you to create an immersive listening experience. Simply press the Spatial Audio button to turn on.

    • LDAC Related

      • What is LDAC?

        LDAC is a Bluetooth encoding format that can transmit 3 times the amount of data of ordinary Bluetooth SBC.

        Note:LDAC only works on devices running Android 8.0 or above, it doesn't works on iPhone devices.

      • How do I use LDAC?

        On a device powered by Android 8.0 or above, do the following:
        1. Open the soundcore app.
        2. Go to the Settings
        3. Click on Sound Mode
        4. Select Preferred Audio Quality and switch to LDAC codec.

        Notes:
        • It takes about 10 seconds to switch audio codecs. You may be required to update the speaker's firmware if available. Do not use the app or speaker while updating.
        • LDAC provides higher quality sound but increases power consumption and reduces playtime.
        • Enable LDAC in a low-interference environment to ensure a stable Bluetooth connection.

      • Why do some devices experience interrupted sound when using the LDAC function?

        After enabling LDAC, your device will default to adaptive bit rate mode. Generally, there won't be any sound interruptions, however, if Android users turn on developer mode and select LDAC 990 kbps playback, sound may slightly cut in and out.

        If you would like to select 990 kbps LDAC, we recommend following these steps:

        1. Turn off Wi-Fi on your Android device.
        2. Turn off any extra Bluetooth and Wi-Fi devices in the room.
        3. Connect your Android device to Motion X600 via Bluetooth and switch to 990 kbps.
        4. Keep the distance between the Android device and Motion X600 within 0.5 m (1.6 ft).
        5. Play local music files.

    • Bluetooth Related

      • How can I TWS pair two Motion X600 speakers at the same time?

        Method 1.
        1. Speaker 1 and Speaker 2: Long press the power button to start both speakers.
        2. Speaker 1: Hold the Bluetooth button until the button light flashes white.
        3. Speaker 2: Hold the Bluetooth button until the button light flashes white.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.
        5. The master speaker is the one with the blue light.
        6. Use the master speaker to pair with your device.

        Method 2.
        1. Long press the power button to start both speakers
        2. Connect either speaker with your Bluetooth device.
        3. On both speakers, press and hold the Bluetooth button for at least 2seconds to enter TWS pairing mode.
        4. Wait for a few seconds, and you will hear a sound when the two speakers have paired successfully.

        Note: To exit TWS mode, hold the Bluetooth button for at least 2 seconds.

      • How does stereo sound work during TWS pairing?

        When you have two Motion X600 speakers paired at the same time, the master speaker supports left channel and sky channel(if the spatial audio is turned on), while the secondary speaker supports right channel and sky channel(if the spatial audio is turned on).

      • I can't detect Motion X600 via Bluetooth. What should I do?

        1. Fully charge the speaker.
        2.Turn on the speaker, then hold the Bluetooth button and volume up button simultaneously for 5-10 seconds to reset the speaker.
        3. Turn your device and your device's Bluetooth off and on.
        4. Clear all pairing records on your device.
        5. Restart your speaker and reconnect to it.
        6. Try the speaker with different devices if possible.

    • EQ Related

      • How do I use the EQ?

        Open the soundcore app and go to Equalizer > Custom > Full-Band. Then click any dot to expand the corresponding frequency band, long press the dot and drag to customize the frequency.

      • Can I increase the bass on my Motion X600?

        You can download the soundcore app and pair the speaker with soundcore app to enhance the bass via the EQ. The audio source quality might also affect the performance of the bass. Try using high-quality audio files or streaming services.

      • How can I share a custom EQ?

        1. Download the soundcore app.
        2. Pair Motion X600 with the soundcore app.
        3. Click Equalizer.
        4. Click the share button in the upper right corner, then click Copy Link or QR Code. You can choose an app to share the link or the QR Code with your friends.

        Note: To use the sharing function, you need to log in to your soundcore account first.

      • How do I import a custom EQ that someone has shared with me?

        Method 1: Copy the Link (Note: The link must be the EQ link of Motion X600 generated in the soundcore App)
        Open the soundcore app and pair with Motion X600, then copy the EQ link, the link will automatically be detected and you will be asked whether or not your want to import it.
        Click "Yes" and then click "Import".

        Method 2: Scan the QR Code
        Open the soundcore app and pair with Motion X600.
        Go to Equalizer > Add > Scan Code for EQ. Then scan the QR code your friend shared with you and click "Import".

    • Documents & Drivers

      • QSG

        A3130-QSG

        2023-05-08

      • Manual

        A3130-Manual

        2023-05-08

    You may also like

    Motion X600 | High-Quality Sound Wireless Speaker (63)

    Motion X600 | High-Quality Sound Wireless Speaker (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Otha Schamberger

    Last Updated:

    Views: 5629

    Rating: 4.4 / 5 (75 voted)

    Reviews: 90% of readers found this page helpful

    Author information

    Name: Otha Schamberger

    Birthday: 1999-08-15

    Address: Suite 490 606 Hammes Ferry, Carterhaven, IL 62290

    Phone: +8557035444877

    Job: Forward IT Agent

    Hobby: Fishing, Flying, Jewelry making, Digital arts, Sand art, Parkour, tabletop games

    Introduction: My name is Otha Schamberger, I am a vast, good, healthy, cheerful, energetic, gorgeous, magnificent person who loves writing and wants to share my knowledge and understanding with you.