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)
Motion X600 | High-Quality Sound Wireless Speaker (17)
Motion X600 | High-Quality Sound Wireless Speaker (18)

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 worrving about the speaker getting wet.
  • Note: For peak performance, please use the soundcore app and 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('Hurry! Christmas Sale 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! Christmas Sale 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; }})

Free Gift

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

Product Overview

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

glow mini

£39.99

  • 360-Degree Dynamic Sound: This portable speaker features an 8W speaker with a single passive radiator to provide 360-degree dynamic sound in a compact package.
  • Full-Body Lighting: The 360-degree light show synchronizes with the music to take any party to the next level.
  • IP67 Protection: Waterproof and dustproof for worry-free listening. Glow Mini portable speaker even floats, so you can chill by the pool with total peace of mind.
  • Long Battery Life: Listen for up to 12 hours on a single charge. Note: Battery life will be reduced when using the light effects.
  • PartyCast 2.0: Simultaneously connect 100+ speakers with synchronized sound and lighting to really feel the party atmosphere.

Free

£39.99

£199.99

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

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 eufy 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 worrving about the speaker getting wet.
  • Note: For peak performance, please use the soundcore app and update to the latest firmware.

Order Support

Fast, Free Shipping

30-Day Money-Back Guarantee

Hassle-Free Warranty

Lifetime Customer Support

Delivery & Payment

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

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_A3130061": ""}`; var description = json_s ? JSON.parse(json_s) : {}; var variant_description = description[`description_${sku}`]; if (variant_description) { const txt = variant_description; const $target = $('.product-8826002899104 .product__information .description'); const dom = $target.html(txt).text(); $target.html(dom); } else { $('.product-8826002899104 .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 worrving about the speaker getting wet.
    • Note: For peak performance, please use the soundcore app and update to the latest firmware.

    `); } } render_description(`A3130061`); $('.product-form-container .swatch_options .swatch-element').on('click', function() { var sku = $(this).data('sku'); render_description(sku); var $product = $('.product-8826002899104'); 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 (25) Motion X600 | High-Quality Sound Wireless Speaker (26)

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

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

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

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

    Become Immersed in Music

    Sound diffuses vertically and horizontally to fill any space.

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

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

    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 (35)

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

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

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

    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)

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

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

    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 (44)

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

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

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

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

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

    Listen for Longer

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

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

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

    IPX7 Waterproof

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

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

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

    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 (53)

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

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

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

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

    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 (57)

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

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

    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.

    Feedback That Speaks Volumes

    Motion X600 | High-Quality Sound Wireless Speaker (60) Motion X600 | High-Quality Sound Wireless Speaker (61)

    "I just keep that turned on all the time because it works so well." -- Max Tech

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

    "It does make a difference—it broadens the sound." -- New Stuff TV

    Motion X600 | High-Quality Sound Wireless Speaker (64) Motion X600 | High-Quality Sound Wireless Speaker (65)

    "It emphasizes the higher as well as the lower frequencies and this creates a really pleasing listening experience" -- Dion Schuddeboom

    Motion X600 | High-Quality Sound Wireless Speaker (66) Motion X600 | High-Quality Sound Wireless Speaker (67)

    "I've never seen a Bluetooth speaker that has that dedicated upward-firing driver to give you spatial audio." -- Apple Insider

    Motion X600 | High-Quality Sound Wireless Speaker (68) Motion X600 | High-Quality Sound Wireless Speaker (69)

    "It’s creating sort of a surround sound experience from just one speaker." -- Jon Rettinger

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

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

    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 (72)

    • 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

    • Declaration of Conformity

      A3130-EU DOC

      2024-02-29T03:01:40Z

    • 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 (73)

      • 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

      • Declaration of Conformity

        A3130-EU DOC

        2024-02-29T03:01:40Z

    • 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 (74)

    • 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

    • Declaration of Conformity

      A3130-EU DOC

      2024-02-29T03:01:40Z

    • 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 (75)

      • 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

      • Declaration of Conformity

        A3130-EU DOC

        2024-02-29T03:01:40Z

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

    FAQs

    How do I get more sound out of my Bluetooth speaker? ›

    Here's a guide on how to make your Bluetooth speaker louder:
    1. Make sure your speaker is charged and turned on. ...
    2. Check the volume settings on your device. ...
    3. Check the volume controls on your speaker. ...
    4. Use an app to boost the volume. ...
    5. Use an equalizer to adjust the audio balance. ...
    6. Use a speaker with more wattage.
    Dec 30, 2022

    How long does it take to charge a motion X600? ›

    How long does it take to charge Motion X600? It takes around 6 hours to charge with a certified 5V/3A wall charger.

    What is the battery life of Soundcore X600? ›

    Anker estimates that the Soundcore Motion X600 can last roughly 12 hours per charge with the Bass Up feature off.

    Is the SoundCore speaker good? ›

    The Soundcore Motion 300 is Anker's answer to that Bose speaker. Around the same size as the Bose, it doesn't sound quite as good, but it sounds impressive for its compact size and costs only $80. As a result, we've awarded it a CNET Editors' Choice as a strong value pick in the portable Bluetooth speaker category.

    Is the SoundCore X600 waterproof? ›

    An IPX7 waterproof rating means you can submerge the speaker to depths of up to one meter for 30 minutes. The Bluetooth signal won't work underwater, but the advantage of this spec is that the X600 can handle heavy rain and faucet pressure without an issue.

    Why is the volume on my Bluetooth speaker so low? ›

    Increase the volume level of both devices. Make sure that your source device is playing music. Move the wireless speaker away from metal objects or other devices which may cause interference. Make sure there are no devices connected to the AUDIO IN port of the wireless speaker.

    Why is my Bluetooth so loud on lowest volume? ›

    Check your device settings: For phones and computers, look for options like "Volume limit" or "Media volume limiter." These can cap the maximum volume, even for headphones. If you have wireless headphones, some have their own volume controls in their apps. Make sure those aren't cranked up.

    Why is my Bluetooth sound so low? ›

    Poor Bluetooth connection or interference can cause low volume. Try moving closer to the Bluetooth device or removing any obstacles between the devices. Some Bluetooth devices have built-in sound equalizer settings that can affect volume levels.

    How do I charge my X600 camera? ›

    GE X600 Digital Camera User Manual
    1. Connect the camera and the power charger using the. supplied USB cable. ( The plug shape of the power charger. ...
    2. Insert the plug of the power charger into the wall outlet to. charge the battery. The charger is for indoor use only. ...
    3. When the camera is turned o, you can also connect the.

    How long should I charge 650mAh battery? ›

    This battery has a capacity of 650mAh, so with a 500mA charger it will take between an hour and an hour and a half.

    How do you know if Soundcore is fully charged? ›

    - When fully charged, all LED indicators are steady white for 1 minute. - Unplug after fully charged: All LEDs are turned off. If you have additional questions, please contact Soundcore customer support at service@soundcore.com for further assistance.

    Are 500w speakers loud? ›

    It is definitely not safe to say a 500-watt speaker will go louder than a 200-watt speaker (though it is often the case). Besides, you also have to keep in mind that each time you double the power you only get 3dB more volume (all other things being equal), which in the grand scheme of things isn't all that much.

    What is the frequency response of Anker SoundCore X600? ›

    The Anker Soundcore Motion X600 sounds good, and delivers an immersive listening experience. Anker states the speaker has a frequency response that extends from 50Hz to 40kHz. That extension to the deep sub-bass is only really noticeable when you activate the BassUp mode.

    How loud is an Anker SoundCore speaker? ›

    The Anker Soundcore 2 is alright for podcasts. It has a balanced mid-range, so vocals are clear and present, but they can also sound a bit veiled due to the underemphasized treble range. It doesn't get very loud, and there's some compression present at max volume.

    How many watts is the Anker SoundCore motion boom specs? ›

    Product information
    Product Dimensions‎13.62 x 5.83 x 7.87 inches
    Speakers Maximum Output Power‎30 Watts
    Battery Capacity‎10000 Milliamp Hours
    Charging Time‎4 Hours
    Number Of Items‎1
    13 more rows

    Top Articles
    Latest Posts
    Article information

    Author: Zonia Mosciski DO

    Last Updated:

    Views: 6043

    Rating: 4 / 5 (71 voted)

    Reviews: 86% of readers found this page helpful

    Author information

    Name: Zonia Mosciski DO

    Birthday: 1996-05-16

    Address: Suite 228 919 Deana Ford, Lake Meridithberg, NE 60017-4257

    Phone: +2613987384138

    Job: Chief Retail Officer

    Hobby: Tai chi, Dowsing, Poi, Letterboxing, Watching movies, Video gaming, Singing

    Introduction: My name is Zonia Mosciski DO, I am a enchanting, joyous, lovely, successful, hilarious, tender, outstanding person who loves writing and wants to share my knowledge and understanding with you.