Motion X600 | Enceinte sans fil haute qualité sonore (2024)

Motion X600 | Enceinte sans fil haute qualité sonore (1)
Motion X600 | Enceinte sans fil haute qualité sonore (2)
Motion X600 | Enceinte sans fil haute qualité sonore (3)
Motion X600 | Enceinte sans fil haute qualité sonore (4)
Motion X600 | Enceinte sans fil haute qualité sonore (5)
Motion X600 | Enceinte sans fil haute qualité sonore (6)
Motion X600 | Enceinte sans fil haute qualité sonore (7)
Motion X600 | Enceinte sans fil haute qualité sonore (8)
Motion X600 | Enceinte sans fil haute qualité sonore (9)
Motion X600 | Enceinte sans fil haute qualité sonore (10)
Motion X600 | Enceinte sans fil haute qualité sonore (11)
Motion X600 | Enceinte sans fil haute qualité sonore (12)
Motion X600 | Enceinte sans fil haute qualité sonore (13)
Motion X600 | Enceinte sans fil haute qualité sonore (14)
Motion X600 | Enceinte sans fil haute qualité sonore (15)
Motion X600 | Enceinte sans fil haute qualité sonore (16)
  • Audio spatial immersif: inspiré de l'acoustique des théâtres, le Motion X600 dispose de 5 haut-parleurs et de 5amplificateurs qui sont disposés de manière à diffuser le son tout autour de vous. Chaque fois que vous appuyez sur le bouton de lecture, vous avez l'impression d'être dans la même pièce que votre artiste préféré.
  • Un son de 50W qui remplit la pièce: que vous fassiez une fête ou que vous écoutiez simplement vos morceaux préférés, le son de 50W remplira n'importe quel espace d'un son riche et de haute qualité qui donne vie à la musique.
  • Emportez de la musique immersive n'importe où: portable et léger, le Motion X600 est facile à transporter d'une pièce à l'autre pour transformer n'importe quelle partie de votre maison en un espace d'écoute immersif.
  • Durée de lecture de 12 heures: Continuez à écouter de la musique et des podcasts pendant plusieurs jours de suite, sans vous soucier de décharger la batterie.
  • Entièrement étanche: avec protection étanche IPX7 pour que vous puissiez simplement vous détendre et écouter sans vous tracasser si vous mouillez l'enceinte.

2. Puis-je utiliser plusieurs codes de réduction ?

Non. Les codes de réduction ne peuvent pas être combinés. Un seul code peut être appliqué par commande.

3. Pourquoi mon code de réduction est-il invalide ?

1) Le code de réduction ne s'applique pas aux articles spécifiques que vous souhaitez acheter

2) Le code de réduction n'a pas été entré correctement

3) Le code de réduction a expiré

4) Le code de réduction ne provient pas du site officiel de soundcore.

Si vous avez des questions, n'hésitez pas à contacter notre service client: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(`Économisez ${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('Dépêchez-vous ! L'offre se termine bientôt'); } else if (days === 1) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Jour ${hours}:${minutes}:${seconds}`); } else if (days === 0) { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`Aujourd'hui ${hours}:${minutes}:${seconds}`); } else { $('#timeOutTxt').css('display', 'inline-block'); $('#timeTxt').css('display', 'none'); $('#newDtes').html(`${days} Les Jours ${hours}:${minutes}:${seconds}`); } } }, 1000); } else { // 展示折扣模块 $('.couponWrapper').show(); $('.DiscountMark').show(); // 展示倒计时 $('#timeOutTxt').css('display', 'none'); $('#timeTxt').css('display', 'inline-block'); $('#timeTxt').html('Dépêchez-vous ! L'offre se termine bientôt'); } 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(`Économisez ${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(`Économisez ${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; }})

199,99€

Envoyez-moi un e-mail lorsque disponible

Laissez votre adresse e-mail et nous vous informerons lorsque le produit sera de nouveau en stock.

Motion X600 | Enceinte sans fil haute qualité sonore

(Facultatif) Rejoignez notre liste de diffusion Soundcore pour recevoir des offres spéciales et bien plus encore

  • Audio spatial immersif: inspiré de l'acoustique des théâtres, le Motion X600 dispose de 5 haut-parleurs et de 5amplificateurs qui sont disposés de manière à diffuser le son tout autour de vous. Chaque fois que vous appuyez sur le bouton de lecture, vous avez l'impression d'être dans la même pièce que votre artiste préféré.
  • Un son de 50W qui remplit la pièce: que vous fassiez une fête ou que vous écoutiez simplement vos morceaux préférés, le son de 50W remplira n'importe quel espace d'un son riche et de haute qualité qui donne vie à la musique.
  • Emportez de la musique immersive n'importe où: portable et léger, le Motion X600 est facile à transporter d'une pièce à l'autre pour transformer n'importe quelle partie de votre maison en un espace d'écoute immersif.
  • Durée de lecture de 12 heures: Continuez à écouter de la musique et des podcasts pendant plusieurs jours de suite, sans vous soucier de décharger la batterie.
  • Entièrement étanche: avec protection étanche IPX7 pour que vous puissiez simplement vous détendre et écouter sans vous tracasser si vous mouillez l'enceinte.

Motion X600 | Enceinte sans fil haute qualité sonore

"; } 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-7714753577138 .product__information .description'); const dom = $target.html(txt).text(); $target.html(dom); } else { $('.product-7714753577138 .product__information .description').html(`
    • Audio spatial immersif: inspiré de l'acoustique des théâtres, le Motion X600 dispose de 5 haut-parleurs et de 5amplificateurs qui sont disposés de manière à diffuser le son tout autour de vous. Chaque fois que vous appuyez sur le bouton de lecture, vous avez l'impression d'être dans la même pièce que votre artiste préféré.
    • Un son de 50W qui remplit la pièce: que vous fassiez une fête ou que vous écoutiez simplement vos morceaux préférés, le son de 50W remplira n'importe quel espace d'un son riche et de haute qualité qui donne vie à la musique.
    • Emportez de la musique immersive n'importe où: portable et léger, le Motion X600 est facile à transporter d'une pièce à l'autre pour transformer n'importe quelle partie de votre maison en un espace d'écoute immersif.
    • Durée de lecture de 12 heures: Continuez à écouter de la musique et des podcasts pendant plusieurs jours de suite, sans vous soucier de décharger la batterie.
    • Entièrement étanche: avec protection étanche IPX7 pour que vous puissiez simplement vous détendre et écouter sans vous tracasser si vous mouillez l'enceinte.
    `); } } render_description(`A3130031`); $('.product-form-container .swatch_options .swatch-element').on('click', function() { var sku = $(this).data('sku'); render_description(sku); var $product = $('.product-7714753577138'); 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 | Enceinte sans fil haute qualité sonore (19)

    Motion X600 | Enceinte sans fil haute qualité sonore (20)

    Motion X600 | Enceinte sans fil haute qualité sonore (21)

    Motion X600 | Enceinte sans fil haute qualité sonore (22)

    Motion X600 | Enceinte sans fil haute qualité sonore (23)

    Plongez dans la musique

    Le son se diffuse verticalement et horizontalement pour remplir n'importe quel espace.

    Motion X600 | Enceinte sans fil haute qualité sonore (24)

    Motion X600 | Enceinte sans fil haute qualité sonore (25)

    Un son qui vous entoure

    Un pilote audio orienté vers le haut crée une scène sonore multidimensionnelle.

    Motion X600 | Enceinte sans fil haute qualité sonore (26)

    Motion X600 | Enceinte sans fil haute qualité sonore (27)

    Entendez chaque détail

    Le DSP haut de gamme offre un son 8 fois meilleur* que nos enceintes précédentes.

    • Plongez dans la musique
    • Un son qui vous entoure
    • Entendez chaque détail

    Plongez dans la musique

    Le son se diffuse verticalement et horizontalement pour remplir n'importe quel espace.

    Un son qui vous entoure

    Un pilote audio orienté vers le haut crée une scène sonore multidimensionnelle.

    Entendez chaque détail

    Le DSP haut de gamme offre un son 8 fois meilleur* que nos enceintes précédentes.

    Motion X600 | Enceinte sans fil haute qualité sonore (28)

    Motion X600 | Enceinte sans fil haute qualité sonore (29)

    Motion X600 | Enceinte sans fil haute qualité sonore (30)

    • Plongez dans la musique
    • Un son qui vous entoure
    • Entendez chaque détail

    Égaliseur personnalisable

    Trouvez le son qui vous convient d'un simple mouvement du doigt.

    Motion X600 | Enceinte sans fil haute qualité sonore (37)

    Motion X600 | Enceinte sans fil haute qualité sonore (38)

    Motion X600 | Enceinte sans fil haute qualité sonore (39)

    • Audio haute résolution
    • Entendez chaque détail
    • Égaliseur personnalisable

    Motion X600 | Enceinte sans fil haute qualité sonore (40)

    Motion X600 | Enceinte sans fil haute qualité sonore (41)

    Écoutez plus longtemps

    Profitez de 12 heures de musique non-stop à partir d'une seule charge.

    Motion X600 | Enceinte sans fil haute qualité sonore (42)

    Motion X600 | Enceinte sans fil haute qualité sonore (43)

    Étanchéité IPX7

    Ne laissez pas un peu d'eau s'interposer entre vous et vos morceaux préférés.

    Motion X600 | Enceinte sans fil haute qualité sonore (44)

    Motion X600 | Enceinte sans fil haute qualité sonore (45)

    Son remplissant la pièce

    La sortie de 50 W est suffisamment puissante pour s'adapter à n'importe quel espace.

    • Écoutez plus longtemps
    • Étanchéité IPX7
    • Son remplissant la pièce

    Écoutez plus longtemps

    Profitez de 12 heures de musique non-stop à partir d'une seule charge.

    Étanchéité IPX7

    Ne laissez pas un peu d'eau s'interposer entre vous et vos morceaux préférés.

    Son remplissant la pièce

    La sortie de 50 W est suffisamment puissante pour s'adapter à n'importe quel espace.

    Motion X600 | Enceinte sans fil haute qualité sonore (46)

    Motion X600 | Enceinte sans fil haute qualité sonore (47)

    Motion X600 | Enceinte sans fil haute qualité sonore (48)

    • Écoutez plus longtemps
    • Étanchéité IPX7
    • Son remplissant la pièce

    Motion X600 | Enceinte sans fil haute qualité sonore (49)

    Poignée en aluminium

    La poignée en aluminium présente une conception rainurée tactile pour une prise en main confortable.

    Pilote orienté vers le haut

    Un pilote orienté vers le haut remplit n'importe quel espace avec du son pour vous envahir de musique.

    Grille 3D

    La conception distinctive en treillis métallique apporte une sensation robuste et industrielle à n'importe quel espace.

    Motion X600 | Enceinte sans fil haute qualité sonore (50)

    Motion X600 | Enceinte sans fil haute qualité sonore (51)

    Motion X600 | Enceinte sans fil haute qualité sonore (52)

    Poignée en aluminium

    La poignée en aluminium présente une conception rainurée tactile pour une prise en main confortable.

    Pilote orienté vers le haut

    Un pilote orienté vers le haut remplit n'importe quel espace avec du son pour vous envahir de musique.

    Grille 3D

    La conception distinctive en treillis métallique apporte une sensation robuste et industrielle à n'importe quel espace.

    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 | Enceinte sans fil haute qualité sonore (53)

    • 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 | Enceinte sans fil haute qualité sonore (54)

      • 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 | Enceinte sans fil haute qualité sonore (55)

    • 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 | Enceinte sans fil haute qualité sonore (56)

      • 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 | Enceinte sans fil haute qualité sonore (57)

    Motion X600 | Enceinte sans fil haute qualité sonore (2024)

    FAQs

    How long does it take to charge 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.

    How many watts is the motion X600? ›

    Soundcore Motion X600 Portable Bluetooth Speaker, Hi-Res Spatial Audio with Wireless 50W Sound, IPX7 Waterproof, Pro EQ, AUX-in, Portable Speaker for Home, Office, Backyard and Bathroom Use.

    How much is Anker Motion X600 in Bangladesh? ›

    What is the price of Anker Soundcore Motion X600 Portable Bluetooth Speaker in Bangladesh? The latest price of Anker Soundcore Motion X600 Portable Bluetooth Speaker in Bangladesh is ৳25900 You can buy the Anker Soundcore Motion X600 Portable Bluetooth Speaker at best price from our website or visit any of our Store.

    What is the battery life of the motion controller? ›

    DJI FPV - Motion Controller, Compact and intuitive FPV drone motion controller, One-handed drone piloting, Battery life 300 min, Weight 167 g.

    How much does Soundcore motion Q weight? ›

    417.3 Grams

    How much does Soundcore Motion Boom weigh? ›

    Anker Soundcore Motion Boom Plus Review: Can it beat the JBL Xtreme 3?
    Soundcore Motion Boom PlusJBL Xtreme 3
    Weight2.39 KG1.96 KG
    Speakers2 x 30W woofer 2 x 30W tweeter2 x 25W RMS woofer 2 x 25W RMS tweeter
    Battery life20 hours15 hours
    IP ratingIP67IP67
    4 more rows
    Sep 28, 2022

    How much does a Soundcore motion boom weigh? ›

    Manufacturer‎Anker
    Place of Business‎Bellevue, WA 98004, US
    Item model number‎A3118
    Product Dimensions‎34.6 x 14.8 x 20 cm; 1.97 kg
    ASIN‎B08LQNL42Z

    What is the PIN code for Soundcore 2? ›

    The pin is not supposed to be entered on the speaker but from the computer. If your Bluetooth speaker has a default pin, just enter that and it should connect. And it's typically 0000 or 1234 for such devices, if not printed on a label on the device.

    Can you pair Soundcore to 2 devices? ›

    Soundcore Motion Boom Plus Speaker supports Multipoint connection. This means you can connect it to two different devices at the same time. Follow the instructions below to pair your Motion Boom Plus Speaker with two different Bluetooth devices.

    How do I pair two Soundcore motion speakers? ›

    How to Pair Two Soundcore Motion Boom Speakers Together?
    1. Turn on both Motion Boom speakers. ...
    2. Short press the TWS button on both speakers. ...
    3. After successful pairing, the TWS button on both speakers will become solid white. ...
    4. Use the primary speaker to connect with other devices.

    Is Soundcore Motion Plus worth it? ›

    Soundcore Motion+ has an excellent design and build that can really help with the sound dispersion and nice stereo separation. I have played with the eq bands quite a lot and they are real eq. Motion+ is a champion in its size category by delivering great bass response and exceptional mids and highs

    Is Anker Motion Plus waterproof? ›

    Fully waterproof means that Motion+ is always ready for rainy days and accidental water spills.

    How much is Soundcore Motion 300 in Bangladesh? ›

    The latest price of Anker Soundcore Motion 300 HiRes LDAC Portable Speaker in Bangladesh is ৳12,500 You can buy or order online the Anker Soundcore Motion 300 HiRes LDAC Portable Speaker at best price from our website.

    How long does it take for VR motion controller to charge? ›

    A: It takes approximately five hours to fully charge a PlayStation Move motion controller (four hours using the charging station).

    How long do VR controllers take to charge? ›

    PS VR2 Sense controller charging time

    It takes approximately 1.5 hours to fully charge the controllers when the battery has no remaining charge.

    How long does it take to charge Soundcore motion+? ›

    Input: 5V 2 A Audio output: 30 W Battery capacity: max. 6700mAh Charging time: Approximately 4 hours(When power is off and the adapter must be at least 5V/2A) Playtime (varies by volume level and music content): 12 hours Size: 257 x 79 x 81 mm/10.1x3.

    How do you charge a move motion controller? ›

    How to charge your PS Move motion controller. While your PS5 console or PS4 console is on, connect your PS Move controller using the included USB cable to start charging. While charging, your controller's status indicator slowly blinks. When charging is complete, the status indicator turns off.

    Top Articles
    Latest Posts
    Article information

    Author: Catherine Tremblay

    Last Updated:

    Views: 6424

    Rating: 4.7 / 5 (47 voted)

    Reviews: 94% of readers found this page helpful

    Author information

    Name: Catherine Tremblay

    Birthday: 1999-09-23

    Address: Suite 461 73643 Sherril Loaf, Dickinsonland, AZ 47941-2379

    Phone: +2678139151039

    Job: International Administration Supervisor

    Hobby: Dowsing, Snowboarding, Rowing, Beekeeping, Calligraphy, Shooting, Air sports

    Introduction: My name is Catherine Tremblay, I am a precious, perfect, tasty, enthusiastic, inexpensive, vast, kind person who loves writing and wants to share my knowledge and understanding with you.