Space One | Active Noise Cancelling Headphones (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.

Space One | Active Noise Cancelling Headphones (1)

Space One | Active Noise Cancelling Headphones (2)

Space One | Active Noise Cancelling Headphones (3)
Space One | Active Noise Cancelling Headphones (4)
Space One | Active Noise Cancelling Headphones (5)
Space One | Active Noise Cancelling Headphones (6)
Space One | Active Noise Cancelling Headphones (7)
Space One | Active Noise Cancelling Headphones (8)
Space One | Active Noise Cancelling Headphones (9)
Space One | Active Noise Cancelling Headphones (10)
Space One | Active Noise Cancelling Headphones (11)
Space One | Active Noise Cancelling Headphones (12)
Space One | Active Noise Cancelling Headphones (13)
Space One | Active Noise Cancelling Headphones (14)
Space One | Active Noise Cancelling Headphones (15)

  • 2X* stronger voice reduction *Compared with soundcore Q30 headphones
  • Reduce noise by up to 98%* with adaptive noise cancelling *Tested by soundcore under laboratory conditions
  • Crisp, Hi-Res sound via 40mm dynamic drivers
  • Worry-free battery (40H ANC on, 55H ANC off)
  • 8° rotating ear cups and soft integrated headband for all-day comfort
  • 5 levels of adjustable transparency to tune your world
  • TCO Certified: For Better Sustainability

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 .gift-list .gift-title').length || $('.product-bundle .bundle-list .bundle-title').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

Space One | Active Noise Cancelling Headphones (16)

Product Overview

Space One | Active Noise Cancelling Headphones (17)

soundcore Tote Bag

£19.99

Having trouble deciding which bag to take with you? Not anymore! The soundcore tote bag offers plenty of space with a lightweight design perfect for those spontaneous journeys.

  • Made from 100% cotton and featuring a long, durable, and comfortable handle, the soundcore Tote Bag measures 13 inches high, and 18 inches wide. Whatever the situation you can easily load up without the burden of straining your shoulder.
  • With its easy-access exterior pocket, grabbing those essentials is simple—just the way it should be.
  • A subtle splash of color with soundcore blue complements any outfit, making it the perfect addition to any outfit.

Note:

  1. The soundcore Tote Bag is made of 100% cotton, with natural cotton seeds on the surface of the bag. Please do not machine wash as this will affect the quality of the Tote Bag. Hand washing is recommended.
  1. For now, this item is not sold separately. It is an exclusive bonus forSpace One's launch.

Free

£19.99

£89.99

Space One | Active Noise Cancelling Headphones (18)

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.

Space One | Active Noise Cancelling Headphones

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

  • 2X* stronger voice reduction *Compared with soundcore Q30 headphones
  • Reduce noise by up to 98%* with adaptive noise cancelling *Tested by soundcore under laboratory conditions
  • Crisp, Hi-Res sound via 40mm dynamic drivers
  • Worry-free battery (40H ANC on, 55H ANC off)
  • 8° rotating ear cups and soft integrated headband for all-day comfort
  • 5 levels of adjustable transparency to tune your world
  • TCO Certified: For Better Sustainability

Order Support

Fast, Free Shipping

30-Day Money-Back Guarantee

Hassle-Free Warranty

Lifetime Customer Support

Delivery & Payment

Space One | Active Noise Cancelling Headphones (20)

"; } 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_A3035G21": ""}`; var description = json_s ? JSON.parse(json_s) : {}; var variant_description = description[`description_${sku}`]; if (variant_description) { const txt = variant_description; const $target = $('.product-10528570507424 .product__information .description'); const dom = $target.html(txt).text(); $target.html(dom); } else { $('.product-10528570507424 .product__information .description').html(`
    • 2X* stronger voice reduction *Compared with soundcore Q30 headphones
    • Reduce noise by up to 98%* with adaptive noise cancelling *Tested by soundcore under laboratory conditions
    • Crisp, Hi-Res sound via 40mm dynamic drivers
    • Worry-free battery (40H ANC on, 55H ANC off)
    • 8° rotating ear cups and soft integrated headband for all-day comfort
    • 5 levels of adjustable transparency to tune your world
    • TCO Certified: For Better Sustainability
    `); } } render_description(`A3035G21`); $('.product-form-container .swatch_options .swatch-element').on('click', function() { var sku = $(this).data('sku'); render_description(sku); var $product = $('.product-10528570507424'); 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'); } }) })

    Space One | Active Noise Cancelling Headphones (22)

    Space One | Active Noise Cancelling Headphones (23)

    Space One | Active Noise Cancelling Headphones (24)

    Space One | Active Noise Cancelling Headphones (25)

    Space One | Active Noise Cancelling Headphones (26) Space One | Active Noise Cancelling Headphones (27)

    Space One | Active Noise Cancelling Headphones (28)

    Space One | Active Noise Cancelling Headphones (29)

    Space One | Active Noise Cancelling Headphones (30)

    Space One | Active Noise Cancelling Headphones (31)

    Space One | Active Noise Cancelling Headphones (32)

    Space One | Active Noise Cancelling Headphones (33)

    Space One | Active Noise Cancelling Headphones (34)

    Space One | Active Noise Cancelling Headphones (35)

    • Auto-Noise Cancelling
    • Hi-Res Wireless Audio
    • Unique Sound Profile
    • 40-Hour Playtime

    Space One | Active Noise Cancelling Headphones (36)

    Space One | Active Noise Cancelling Headphones (37)

    Space One | Active Noise Cancelling Headphones (38)

    Space One | Active Noise Cancelling Headphones (39)

    • Auto-Noise Cancelling
    • Hi-Res Wireless Audio
    • Unique Sound Profile
    • 40-Hour Playtime

    Space One | Active Noise Cancelling Headphones (40)

    Easy Pack-and-Go

    Designed for smooth movement and a symmetrical look. The ear cups rotate and fold neatly for convenient storage.

    Contours to Any Head Shape

    With the floating design, the ear cups rotate 8° in either direction, effortlessly conforming with high compatibility, for a natural fit.

    Long-Listening Made Comfortable

    The headband evenly distributes pressure on your head, for gentle support and comfort during prolonged wear.

    Sleek, Smooth, and Elegant

    Space One combines style with ergonomic design, offering comfort and 3 stunning colors to showcase your flair.

    Space One | Active Noise Cancelling Headphones (41)

    Space One | Active Noise Cancelling Headphones (42)

    Space One | Active Noise Cancelling Headphones (43)

    Space One | Active Noise Cancelling Headphones (44)

    Easy Pack-and-Go

    Designed for smooth movement and a symmetrical look. The ear cups rotate and fold neatly for convenient storage.

    Contours to Any Head Shape

    With the floating design, the ear cups rotate 8° in either direction, effortlessly conforming with high compatibility, for a natural fit.

    Long-Listening Made Comfortable

    The headband evenly distributes pressure on your head, for gentle support and comfort during prolonged wear.

    Sleek, Smooth, and Elegant

    Space One combines style with ergonomic design, offering comfort and 3 stunning colors to showcase your flair.

    Space One | Active Noise Cancelling Headphones (45)

    Space One | Active Noise Cancelling Headphones (46)

    Space One | Active Noise Cancelling Headphones (47)

    Space One | Active Noise Cancelling Headphones (48)

    Space One | Active Noise Cancelling Headphones (49)

    Space One | Active Noise Cancelling Headphones (50)

    Space One | Active Noise Cancelling Headphones (51)

    Space One | Active Noise Cancelling Headphones (52)

    Space One | Active Noise Cancelling Headphones (53)

    Space One | Active Noise Cancelling Headphones (54)

    Space One | Active Noise Cancelling Headphones (55)

    Space One | Active Noise Cancelling Headphones (56)

    Space One | Active Noise Cancelling Headphones (57)

    Space One | Active Noise Cancelling Headphones (58)

    Space One | Active Noise Cancelling Headphones (59)

    Space One | Active Noise Cancelling Headphones (60)

    Space One | Active Noise Cancelling Headphones (61)

    Space One | Active Noise Cancelling Headphones (62)

    Product/Features

    Space One | Active Noise Cancelling Headphones (63) Space One | Active Noise Cancelling Headphones (64) Space One | Active Noise Cancelling Headphones (65) Space One | Active Noise Cancelling Headphones (66)
    Space One Q30 Q35 Space Q45
    Sound Hi-Res Wireless, LDAC, HearID Hi-Res, customized EQ Hi-Res Wireless, Hi-Res, LDAC Hi-Res Wireless, Hi-Res, LDAC
    Active Noise Cancellation Adaptive ANC Hybrid ANC with multiple modes Hybrid ANC with multiple modes Adaptive ANC
    Playtime 55H (ANC off), 40H (ANC on) 60H (ANC off), 40H (ANC on) 60H (ANC off), 40H (ANC on) 65H (ANC off), 50H (ANC on)
    Fast Charging 5 mins = 4 hours 5 mins = 4 hours 5 mins = 4 hours 5 mins = 4 hours
    Connectivity Bluetooth 5.3, AUX Bluetooth 5, AUX, NFC Bluetooth 5, AUX with mic, NFC Bluetooth 5.3, AUX
    Calls 3 mics with AI algorithm 2 mics 2 mics with AI algorithm 2 mics with AI algorithm
    soundcore app Yes Yes Yes Yes

    FAQ

    • Operation Related
    • Connection Related
    • Specifications
    • Call Related
    • Troubleshooting Related
    • Others
    • Documents & Drivers
    • How to Switch Ambient Sound Modes

      1. Space One automatically sets the default ANC and Transparency levels are both set to 5. These levels can be adjusted through the soundcore app according to personal preference.
      2. Pressing the NC button once will switch between noise canceling and transparency modes by default. You can add "normal mode" through the soundcore app, after this, you can press the NC button to cycle through noise canceling, transparency, and normal modes.

    • How to Reset

      To reset the Space One back to factory settings, turn on the headphones and then press and hold the power button and volume up button for 5 seconds. The power indicator light will flash slowly three times in red, indicating that the headphones have been reset to factory settings successfully.

      Note: After restoring to factory settings, all function switches will be restored to their default settings. For example, after restoring to factory settings, the wear detection function will be restored to the default closed state. Please reset the function switches according to personal usage habits.

    • How to Switch to BassUp Mode

      1. The "Controls" section of the soundcore app allows you to set the double-tap NC button to activate the BassUp feature. After setting, you can experience the BassUp effect by double-tapping the NC button.
      2. You can also select the Bass Booster EQ in the soundcore app to experience the BassUp effect.

    • How to Enable the Wear Detection Function

      The automatic play/pause feature (Wearing Detection) is turned off by default. Please remove the dustproof sticker on the sensor detection hole inside the left earpads. Enable the "Wearing Detection" in the upper right corner of the soundcore app to activate the Wearing Detection feature.

    • Wearing Calibration Related

      1. If the Wearing Detection function is not sensitive enough, you can use the wearing calibration feature to improve the sensitivity of the wearing detection.
      2. Calibration method: You can perform wearing calibration in the "Wearing Detection" section of the soundcore app's settings menu by following the prompts to restore detection sensitivity. To avoid calibration failure, please pay close attention to the place/wearing guide provided in the souncore app.

    • How to do Firmware Upgrades

      1. You can upgrade the headphone firmware through a pop-up window in the soundcore app.
      2. You can also upgrade the firmware in the "Update Firmware" section of the soundcore app's settings menu

    • Call Control

      1. Press the play/pause button once to answer a call
      2. Press the play/pause button once to end a call
      3. Press and hold the play/pause button for 2 seconds to reject an incoming call
      4. During a call, press and hold the play/pause button for 2 seconds to toggle between the mute and unmute states. A prompt tone will indicate a successful switch.

    • Bluetooth Indicator and Prompt Tone Related Information

      1. Power on:
      Power on tone, battery level voice prompt, power indicator flashes white 3 times and then turns off.
      2. Power off:
      Power off tone, power indicator flashes white 3 times and then turns off.
      3. Bluetooth pairing mode:
      Enters pairing mode with a prompt tone, power indicator flashes blue.
      4. Bluetooth pairing success:
      Bluetooth pairing success tone, power indicator stays on for 3 seconds and then turns off.
      5. Bluetooth disconnection:
      Bluetooth disconnected tone, no light effect.
      6. Reconnection mode:
      Prompt tone, power indicator flashes slowly in blue.

    • Battery Level Indicator and Prompt Tone Related Information

      1. Half an hour before the battery is depleted: Power indicator flashes once every 20 seconds.
      2. Charging: Power indicator stays on in red.
      3. Fully charged: Power indicator turns off.
      4. Battery level below 10%: Power-on prompt for low battery level.
      5. Battery level between 31% and 69%: Power-on prompt for medium battery level.
      6. Battery level above 70%: Power-on prompt for high battery level.

    • Play-time Related

      Tested battery life data for playing specified music on iPhone at 50% volume:
      1. ANC: 40 hours
      2. Transparency: 40 hours
      3. Normal: 55 hours
      4. Fast Charge 5 min: 4 hours under Normal mode.

    • Bluetooth Connection Related

      Bluetooth Connection:
      1. If the device has not been paired before, it will enter into pairing mode once activated. Enable Bluetooth on the device you want to connect to, and select "soundcore Space One" from the list.
      2. Space One will automatically reconnect to devices previously paired.
      3. When the device is turned off, press and hold the Power button for 5 seconds to turn on and enter pairing mode.

      Wired Connection:
      1. Connect Space One to the device using the configured AUX-in cable. By doing this, the Bluetooth function is disabled. Once connected, hold down the power button for roughly 3 seconds to activate Space One. You will hear a audio prompt indicating that the headphones are turned on. Please note in the wired mode, Space One uses the classic EQ.

      Google Fast Pair:
      After turning on the headphones or double-clicking the power button to enter pairing mode, simply bring the headphones close to an Android 6.0 phone running Google Play services version 11.7 or higher to quickly connect through a pop-up window.

    • Multipoint Connection Related

      1. With Space One already connected to a device, you can enter multipoint connection mode by double-clicking the power button. From there, follow the standard Bluetooth connection steps to connect a second device.
      2. Multipoint connection is enabled automatically. If you wish to change this, connect your Space One headphones with the soundcore app, and select Space One from the "Device List". Here, you can manually deactivate multipoint connecting from the settings menu.

    • Device Connection Settings

      Input and output settings are only required for Bluetooth connections:

      1. For Windows computers:
      Device settings: select "soundcore Space One Hands-Free AG Audio" for input and "soundcore Space One Stereo" for output.
      For conference software: select "soundcore Space One Hands-Free AG Audio" for both input and output.

      2. For macOS computers:
      Device settings: select "soundcore Space One" for both input and output.
      For conference software: select "soundcore Space One" for both input and output.

    • Is Space One waterproof and sweatproof?

      Due to structural limitations, headband products, especially in areas such as USB and AUX-in, have a high risk of water and sweat ingress. Therefore, the product itself does not have waterproof and sweat-proof characteristics. However, in terms of craftsmanship, UV protection glue technology has been added to the main risk components and key solder points of the internal PCBA to protect these critical areas with UV glue and reduce the risk of the entire machine.

    • Why is the mute icon on the calling software not synchronized with the microphone status of the headphones?

      On uncertified calling software, the mute icon of the software will not change with the mute/unmute status of Space One's microphone, but the mute/unmute function on both the software and headphone side can still work normally.

    • Why is there no change in call sound quality after adjusting the EQ on the soundcore app?

      The EQ in the soundcore app only affects media sound quality and has no effect on call sound quality

    • What should I do if the volume is not syncing with the device?

      1. For some Android phones, the headphone volume is not synchronized by default and users need to manually enter developer mode to adjust the volume synchronization settings. The method of entering developer mode varies depending on the phone model. For most models, you can enter developer mode by going to "Settings", finding the "Phone Version" option, and tapping it repeatedly until a prompt appears indicating that you have entered developer mode. Then, go to "Developer Options" to adjust the absolute volume setting. If this method does not work, you can search online for specific instructions on how to enter developer mode for your particular phone model.
      2. For HarmonyOS phones, the headphone volume is not synchronized by default. You can directly enable volume synchronization in the settings window that appears when the Bluetooth connection name is displayed.
      3. The media volume and call volume are independent of each other. Therefore, when adjusting the volume during a call, the media volume bar will not change. Similarly, adjusting the media volume bar will not affect the call volume. This does not indicate that the headphone volume is not synchronized with the device.

    • What should I do if Space One cannot enter multimpoint connection pairing mode?

      1. The headphones cannot enter pairing mode during incoming calls or calls in progress. Please try again after ending the call.
      2. The headphones cannot enter multipoint connection pairing mode while in LDAC mode. Please exit LDAC mode in the soundcore app settings and try again.

    • What should I do if reconnection fails?

      1. Reboot the device and headphones and try again.
      2. On the device, click on the Bluetooth name of the headphones in the Bluetooth list to initiate a Bluetooth reconnection.
      3. Select Space One from the list of previously connected devices.
      4. Clear the Bluetooth pairing records on the device and put the headphones into pairing mode and try reconnecting.
      5. Reset the headphones to factory settings and attempt to pair them with the device again.

    • What should I do if Space One encounters disconnection issues?

      1. Try to shorten the connection distance and avoid any walls or obstacles between the headphones and the device.
      2. Rule out the effects of poor network speed or significant environmental interference. You can try switching to a different network or changing the environment where the device and headphones are located to reduce the impact of high-power output interference sources.
      3. Rule out the effects of outdated product firmware versions and device system versions. You can try upgrading the headphones firmware and device system version.

    • What should I do if there is a electrical current sound when connecting to AUX-in cable?

      There may be electrical noise when charging the device while using AUX-In cable. It is recommended to unplug the charging cable and only use battery power when using the device, or use a three-pronged grounded plug.

    • What should I do if I hear calls in poor quality, experience a mic interruption, or no sound from mic?

      1. Try selecting the computer as sound input and output and then switching back to the headphones, restarting the headphones, or exiting the call and then re-entering the call to resolve the issue.
      2. Confirm that the mic is unmuted, the call software is not muted, and the input settings of the call software are correct. Use the input call detection on the call software to confirm that the device or call software can call the headphones microphone normally. If necessary, you can try restarting the call.
      3. If the call quality is poor when using call software, please try to find the following settings in the call app and adjust them:
      4. The AUX-in cable does not have a Mic. If it is in a wired connection state, it will use the connected device's own microphone for the call.

    • What should I do if Space One disconnects, the sound is choppy, or there is no sound?

      1. Avoid playing games while on a call.
      2. Some phones may have a high power output, which can cause voice distortion or excessive call noise when the headphone volume is too high. It is recommended to reduce the headphone volume appropriately.
      3. If it is a software call, try to shorten the connection distance between the headphones and the device, confirm that the input and output selections of the device or call software are correct, switch the output on the call software to the device's built-in speaker and then switch back to the headphones to restore normal call quality.
      4. Rule out the impact of poor network speed or excessive environmental interference. You can try switching to a different network connection, and changing the environment where the device and headphones are located to reduce the impact of highpower output interference sources.
      5. Rule out the impact of outdated product firmware versions, call software, and device system versions. You can try upgrading the headphones, call software, and device system versions.

    • What should I do if the sound does not output from the headphones after answering a phone call through a mobile phone?

      When headphones are connected to an iOS system phone, if the answer/hang-up button on the headphones is used to answer a call, the phone will select the headphones as the output device. If the call is answered on the phone, the phone's speaker will be selected as the output device. To make the output default to the headphones, go to Accessibility-Touch-Call Audio Routing and select "Bluetooth Headset".

    • What should I do if the headphones enter the call mode abnormally?

      When opening the input/output settings page of the computer system, the headphones will enter into the HFP mode (i.e. call state). Please close the settings page.

    • What should I do if the sound quality is poor when using Space One?

      1. Try to adjust the EQ through the soundcore app to improve sound quality
      2. If the headphones are connected to a phone and music is played during a call, the sound quality will deteriorate. Audio transmitted through HFP will cause a decrease in music quality.
      3. If the headphones are connected to a computer, opening the input/output settings page of the computer system will put the headphones in call mode. Audio transmitted through the voice channel will cause a decrease in music quality. Please close the settings page. If the computer is running Windows, make sure to select "soundcore Space One Stereo" as the sound output.
      4. If the headphones are turned off while connected via AUX-in cable, the classic EQ will not be activated and the sound quality will not be as good. Press the power button to turn on the headphones and activate the music EQ for a better listening experience.

    • What should I do if the Wearing Detection function fails?

      1. Check if Wearing Detection is turned on in the soundcore app.
      2. The headphones can only control audio playback apps. Video playback apps may not respond to the music play/pause command sent by the Wearing Detection function.
      3. Some devices may not respond properly to the music play/pause command sent by the Wearing Detection function.
      4. The Wearing Detection function does not work when connected via AUX-in cable. Please use a Bluetooth connection to experience this function.
      5. The Wearing Detection sensor hole is located inside the left earcup. Please make sure there is no hair or clothing blocking the hole when wearing the headphones. When taking off the headphones, flip the left earcup to avoid triggering or mis-triggering the sensor.
      6. If the sensor mirror inside the left earcup is dirty or has condensation, it may not work properly. Please use a cotton swab dipped in alcohol to gently wipe it until the dirt and condensation disappear. Please do not wipe it forcefully to avoid scratching the lens and affecting the recognition accuracy.
      7. If you manually play or pause audio on the device after taking off the headphones, the audio will not automatically play when you put them back on. If you want to enable automatic play/pause when wearing or taking off the headphones, you need to manually play audio on the device again while wearing the headphones.
      8. You can perform wearing calibration in the soundcore app by going to Settings-Wearing Detection-Wearing Calibration in the upper right corner. Please follow the guide images to place and wear the headphones properly to avoid calibration failure.

    • What should I do if I cannot enter the soundcore app?

      When the headphones are connected to two devices at the same time, the soundcore app can only be accessed on one of the devices. Please make sure that the soundcore app is not open on both devices at the same time. If it is, please delete soundcore app from one of the devices and try again.

    • What should I do if Space One cannot be charged?

      1. The headphones can be charged normally when the ambient temperature is between 0-45℃. Please make sure the ambient temperature is within the limited range.
      2. The charging current of the headphones is between 530-560mA. An unqualified or faulty charger may have an output power that is too low, causing the output voltage to drop when connected to a high-current device, resulting in the headphones not being charged. Please replace the charger with one that has sufficient power. It is recommended to use a genuine charger with a rating of 5V/1A or higher.

    • How to better maintain and care for Space One?

      1. It is recommended to use the headphones at least once a month to avoid battery depletion and over-discharge, which can affect the battery life.
      2. Try to avoid overcharging the headphones. Only charge them when the remaining battery is 20% or less.
      3. Place them on a dry, flat surface. If the headphones accidentally get wet, dry them with a hairdryer on the cool setting.
      4. It is recommended not to use the headphones in a low-pressure environment.
      5. Avoid excessive external force that can cause irreversible damage to the headphones and make them unusable.
      6. Sweat has a high salt concentration and is corrosive. Over time, sweat can seep into the leather, causing the leather to weaken and age prematurely. In addition, human skin oils can also damage the leather. Therefore, after use, please clean it with a cotton cloth dipped in 75% medical alcohol and dry it in a ventilated and dry environment. Do not wipe it with water. If it cannot be dried in time, water will accelerate the decomposition of the leather, shortening the life of the leather.
      7. Do not use the headphones in a humid environment. Also, try to avoid leaving the headphones unprotected. After using the headphones, let them dry before putting them in a bag or box. The temperature of the place where the headphones are stored should not be too high or too low. Put a desiccant in the bag or box, which can absorb the moisture in the headphones.
      8. Exposure to sunlight can accelerate the aging of the leather, so try to avoid storing or using the headphones in this environment.
      9. If the ear pads are damaged after their expiration date, please replace them in a timely manner.

    • How should I deal with foreign objects and liquids entering the charging port?

      Be careful to clean up any foreign objects and liquids in the charging port, and let it air dry for 24 hours before charging again.

    • Declaration of Conformity

      A3035-EU DOC

      2024-01-19T03:45:31Z

    • Manual

      A3035-User Manual

      2024-01-19T01:21:54Z

    • Operation Related

      • How to Switch Ambient Sound Modes

        1. Space One automatically sets the default ANC and Transparency levels are both set to 5. These levels can be adjusted through the soundcore app according to personal preference.2. Pressing the NC button once will switch between noise canceling and transparency modes by default. You can add "normal mode" through the soundcore app, after this, you can press the NC button to cycle through noise canceling, transparency, and normal modes.

      • How to Reset

        To reset the Space One back to factory settings, turn on the headphones and then press and hold the power button and volume up button for 5 seconds. The power indicator light will flash slowly three times in red, indicating that the headphones have been reset to factory settings successfully.Note: After restoring to factory settings, all function switches will be restored to their default settings. For example, after restoring to factory settings, the wear detection function will be restored to the default closed state. Please reset the function switches according to personal usage habits.

      • How to Switch to BassUp Mode

        1. The "Controls" section of the soundcore app allows you to set the double-tap NC button to activate the BassUp feature. After setting, you can experience the BassUp effect by double-tapping the NC button.2. You can also select the Bass Booster EQ in the soundcore app to experience the BassUp effect.

      • How to Enable the Wear Detection Function

        The automatic play/pause feature (Wearing Detection) is turned off by default. Please remove the dustproof sticker on the sensor detection hole inside the left earpads. Enable the "Wearing Detection" in the upper right corner of the soundcore app to activate the Wearing Detection feature.

      • Wearing Calibration Related

        1. If the Wearing Detection function is not sensitive enough, you can use the wearing calibration feature to improve the sensitivity of the wearing detection.2. Calibration method: You can perform wearing calibration in the "Wearing Detection" section of the soundcore app's settings menu by following the prompts to restore detection sensitivity. To avoid calibration failure, please pay close attention to the place/wearing guide provided in the souncore app.

      • How to do Firmware Upgrades

        1. You can upgrade the headphone firmware through a pop-up window in the soundcore app.2. You can also upgrade the firmware in the "Update Firmware" section of the soundcore app's settings menu

      • Call Control

        1. Press the play/pause button once to answer a call2. Press the play/pause button once to end a call3. Press and hold the play/pause button for 2 seconds to reject an incoming call4. During a call, press and hold the play/pause button for 2 seconds to toggle between the mute and unmute states. A prompt tone will indicate a successful switch.

      • Bluetooth Indicator and Prompt Tone Related Information

        1. Power on: Power on tone, battery level voice prompt, power indicator flashes white 3 times and then turns off.2. Power off: Power off tone, power indicator flashes white 3 times and then turns off.3. Bluetooth pairing mode: Enters pairing mode with a prompt tone, power indicator flashes blue.4. Bluetooth pairing success: Bluetooth pairing success tone, power indicator stays on for 3 seconds and then turns off.5. Bluetooth disconnection: Bluetooth disconnected tone, no light effect.6. Reconnection mode: Prompt tone, power indicator flashes slowly in blue.

      • Battery Level Indicator and Prompt Tone Related Information

        1. Half an hour before the battery is depleted: Power indicator flashes once every 20 seconds. 2. Charging: Power indicator stays on in red. 3. Fully charged: Power indicator turns off. 4. Battery level below 10%: Power-on prompt for low battery level. 5. Battery level between 31% and 69%: Power-on prompt for medium battery level. 6. Battery level above 70%: Power-on prompt for high battery level.

      • Play-time Related

        Tested battery life data for playing specified music on iPhone at 50% volume:1. ANC: 40 hours2. Transparency: 40 hours3. Normal: 55 hours4. Fast Charge 5 min: 4 hours under Normal mode.

    • Connection Related

      • Bluetooth Connection Related

        Bluetooth Connection:1. If the device has not been paired before, it will enter into pairing mode once activated. Enable Bluetooth on the device you want to connect to, and select "soundcore Space One" from the list.2. Space One will automatically reconnect to devices previously paired.3. When the device is turned off, press and hold the Power button for 5 seconds to turn on and enter pairing mode.Wired Connection:1. Connect Space One to the device using the configured AUX-in cable. By doing this, the Bluetooth function is disabled. Once connected, hold down the power button for roughly 3 seconds to activate Space One. You will hear a audio prompt indicating that the headphones are turned on. Please note in the wired mode, Space One uses the classic EQ.Google Fast Pair:After turning on the headphones or double-clicking the power button to enter pairing mode, simply bring the headphones close to an Android 6.0 phone running Google Play services version 11.7 or higher to quickly connect through a pop-up window.

      • Multipoint Connection Related

        1. With Space One already connected to a device, you can enter multipoint connection mode by double-clicking the power button. From there, follow the standard Bluetooth connection steps to connect a second device. 2. Multipoint connection is enabled automatically. If you wish to change this, connect your Space One headphones with the soundcore app, and select Space One from the "Device List". Here, you can manually deactivate multipoint connecting from the settings menu.

      • Device Connection Settings

        Input and output settings are only required for Bluetooth connections:1. For Windows computers:Device settings: select "soundcore Space One Hands-Free AG Audio" for input and "soundcore Space One Stereo" for output.For conference software: select "soundcore Space One Hands-Free AG Audio" for both input and output.2. For macOS computers:Device settings: select "soundcore Space One" for both input and output.For conference software: select "soundcore Space One" for both input and output.

    • Specifications

      • Is Space One waterproof and sweatproof?

        Due to structural limitations, headband products, especially in areas such as USB and AUX-in, have a high risk of water and sweat ingress. Therefore, the product itself does not have waterproof and sweat-proof characteristics. However, in terms of craftsmanship, UV protection glue technology has been added to the main risk components and key solder points of the internal PCBA to protect these critical areas with UV glue and reduce the risk of the entire machine.

    • Call Related

      • Why is the mute icon on the calling software not synchronized with the microphone status of the headphones?

        On uncertified calling software, the mute icon of the software will not change with the mute/unmute status of Space One's microphone, but the mute/unmute function on both the software and headphone side can still work normally.

      • Why is there no change in call sound quality after adjusting the EQ on the soundcore app?

        The EQ in the soundcore app only affects media sound quality and has no effect on call sound quality

    • Troubleshooting Related

      • What should I do if the volume is not syncing with the device?

        1. For some Android phones, the headphone volume is not synchronized by default and users need to manually enter developer mode to adjust the volume synchronization settings. The method of entering developer mode varies depending on the phone model. For most models, you can enter developer mode by going to "Settings", finding the "Phone Version" option, and tapping it repeatedly until a prompt appears indicating that you have entered developer mode. Then, go to "Developer Options" to adjust the absolute volume setting. If this method does not work, you can search online for specific instructions on how to enter developer mode for your particular phone model.2. For HarmonyOS phones, the headphone volume is not synchronized by default. You can directly enable volume synchronization in the settings window that appears when the Bluetooth connection name is displayed.3. The media volume and call volume are independent of each other. Therefore, when adjusting the volume during a call, the media volume bar will not change. Similarly, adjusting the media volume bar will not affect the call volume. This does not indicate that the headphone volume is not synchronized with the device.

      • What should I do if Space One cannot enter multimpoint connection pairing mode?

        1. The headphones cannot enter pairing mode during incoming calls or calls in progress. Please try again after ending the call.2. The headphones cannot enter multipoint connection pairing mode while in LDAC mode. Please exit LDAC mode in the soundcore app settings and try again.

      • What should I do if reconnection fails?

        1. Reboot the device and headphones and try again.2. On the device, click on the Bluetooth name of the headphones in the Bluetooth list to initiate a Bluetooth reconnection.3. Select Space One from the list of previously connected devices.4. Clear the Bluetooth pairing records on the device and put the headphones into pairing mode and try reconnecting.5. Reset the headphones to factory settings and attempt to pair them with the device again.

      • What should I do if Space One encounters disconnection issues?

        1. Try to shorten the connection distance and avoid any walls or obstacles between the headphones and the device.2. Rule out the effects of poor network speed or significant environmental interference. You can try switching to a different network or changing the environment where the device and headphones are located to reduce the impact of high-power output interference sources.3. Rule out the effects of outdated product firmware versions and device system versions. You can try upgrading the headphones firmware and device system version.

      • What should I do if there is a electrical current sound when connecting to AUX-in cable?

        There may be electrical noise when charging the device while using AUX-In cable. It is recommended to unplug the charging cable and only use battery power when using the device, or use a three-pronged grounded plug.

      • What should I do if I hear calls in poor quality, experience a mic interruption, or no sound from mic?

        1. Try selecting the computer as sound input and output and then switching back to the headphones, restarting the headphones, or exiting the call and then re-entering the call to resolve the issue.2. Confirm that the mic is unmuted, the call software is not muted, and the input settings of the call software are correct. Use the input call detection on the call software to confirm that the device or call software can call the headphones microphone normally. If necessary, you can try restarting the call.3. If the call quality is poor when using call software, please try to find the following settings in the call app and adjust them:4. The AUX-in cable does not have a Mic. If it is in a wired connection state, it will use the connected device's own microphone for the call.

      • What should I do if Space One disconnects, the sound is choppy, or there is no sound?

        1. Avoid playing games while on a call. 2. Some phones may have a high power output, which can cause voice distortion or excessive call noise when the headphone volume is too high. It is recommended to reduce the headphone volume appropriately.3. If it is a software call, try to shorten the connection distance between the headphones and the device, confirm that the input and output selections of the device or call software are correct, switch the output on the call software to the device's built-in speaker and then switch back to the headphones to restore normal call quality.4. Rule out the impact of poor network speed or excessive environmental interference. You can try switching to a different network connection, and changing the environment where the device and headphones are located to reduce the impact of highpower output interference sources.5. Rule out the impact of outdated product firmware versions, call software, and device system versions. You can try upgrading the headphones, call software, and device system versions.

      • What should I do if the sound does not output from the headphones after answering a phone call through a mobile phone?

        When headphones are connected to an iOS system phone, if the answer/hang-up button on the headphones is used to answer a call, the phone will select the headphones as the output device. If the call is answered on the phone, the phone's speaker will be selected as the output device. To make the output default to the headphones, go to Accessibility-Touch-Call Audio Routing and select "Bluetooth Headset".

      • What should I do if the headphones enter the call mode abnormally?

        When opening the input/output settings page of the computer system, the headphones will enter into the HFP mode (i.e. call state). Please close the settings page.

      • What should I do if the sound quality is poor when using Space One?

        1. Try to adjust the EQ through the soundcore app to improve sound quality2. If the headphones are connected to a phone and music is played during a call, the sound quality will deteriorate. Audio transmitted through HFP will cause a decrease in music quality.3. If the headphones are connected to a computer, opening the input/output settings page of the computer system will put the headphones in call mode. Audio transmitted through the voice channel will cause a decrease in music quality. Please close the settings page. If the computer is running Windows, make sure to select "soundcore Space One Stereo" as the sound output.4. If the headphones are turned off while connected via AUX-in cable, the classic EQ will not be activated and the sound quality will not be as good. Press the power button to turn on the headphones and activate the music EQ for a better listening experience.

      • What should I do if the Wearing Detection function fails?

        1. Check if Wearing Detection is turned on in the soundcore app.2. The headphones can only control audio playback apps. Video playback apps may not respond to the music play/pause command sent by the Wearing Detection function.3. Some devices may not respond properly to the music play/pause command sent by the Wearing Detection function.4. The Wearing Detection function does not work when connected via AUX-in cable. Please use a Bluetooth connection to experience this function.5. The Wearing Detection sensor hole is located inside the left earcup. Please make sure there is no hair or clothing blocking the hole when wearing the headphones. When taking off the headphones, flip the left earcup to avoid triggering or mis-triggering the sensor.6. If the sensor mirror inside the left earcup is dirty or has condensation, it may not work properly. Please use a cotton swab dipped in alcohol to gently wipe it until the dirt and condensation disappear. Please do not wipe it forcefully to avoid scratching the lens and affecting the recognition accuracy.7. If you manually play or pause audio on the device after taking off the headphones, the audio will not automatically play when you put them back on. If you want to enable automatic play/pause when wearing or taking off the headphones, you need to manually play audio on the device again while wearing the headphones.8. You can perform wearing calibration in the soundcore app by going to Settings-Wearing Detection-Wearing Calibration in the upper right corner. Please follow the guide images to place and wear the headphones properly to avoid calibration failure.

      • What should I do if I cannot enter the soundcore app?

        When the headphones are connected to two devices at the same time, the soundcore app can only be accessed on one of the devices. Please make sure that the soundcore app is not open on both devices at the same time. If it is, please delete soundcore app from one of the devices and try again.

      • What should I do if Space One cannot be charged?

        1. The headphones can be charged normally when the ambient temperature is between 0-45℃. Please make sure the ambient temperature is within the limited range.2. The charging current of the headphones is between 530-560mA. An unqualified or faulty charger may have an output power that is too low, causing the output voltage to drop when connected to a high-current device, resulting in the headphones not being charged. Please replace the charger with one that has sufficient power. It is recommended to use a genuine charger with a rating of 5V/1A or higher.

    • Others

      • How to better maintain and care for Space One?

        1. It is recommended to use the headphones at least once a month to avoid battery depletion and over-discharge, which can affect the battery life.2. Try to avoid overcharging the headphones. Only charge them when the remaining battery is 20% or less.3. Place them on a dry, flat surface. If the headphones accidentally get wet, dry them with a hairdryer on the cool setting.4. It is recommended not to use the headphones in a low-pressure environment.5. Avoid excessive external force that can cause irreversible damage to the headphones and make them unusable.6. Sweat has a high salt concentration and is corrosive. Over time, sweat can seep into the leather, causing the leather to weaken and age prematurely. In addition, human skin oils can also damage the leather. Therefore, after use, please clean it with a cotton cloth dipped in 75% medical alcohol and dry it in a ventilated and dry environment. Do not wipe it with water. If it cannot be dried in time, water will accelerate the decomposition of the leather, shortening the life of the leather.7. Do not use the headphones in a humid environment. Also, try to avoid leaving the headphones unprotected. After using the headphones, let them dry before putting them in a bag or box. The temperature of the place where the headphones are stored should not be too high or too low. Put a desiccant in the bag or box, which can absorb the moisture in the headphones.8. Exposure to sunlight can accelerate the aging of the leather, so try to avoid storing or using the headphones in this environment.9. If the ear pads are damaged after their expiration date, please replace them in a timely manner.

      • How should I deal with foreign objects and liquids entering the charging port?

        Be careful to clean up any foreign objects and liquids in the charging port, and let it air dry for 24 hours before charging again.

    • Documents & Drivers

      • Declaration of Conformity

        A3035-EU DOC

        2024-01-19T03:45:31Z

      • Manual

        A3035-User Manual

        2024-01-19T01:21:54Z

    • Operation Related
    • Connection Related
    • Specifications
    • Call Related
    • Troubleshooting Related
    • Others
    • Documents & Drivers
    • How to Switch Ambient Sound Modes

      1. Space One automatically sets the default ANC and Transparency levels are both set to 5. These levels can be adjusted through the soundcore app according to personal preference.
      2. Pressing the NC button once will switch between noise canceling and transparency modes by default. You can add "normal mode" through the soundcore app, after this, you can press the NC button to cycle through noise canceling, transparency, and normal modes.

    • How to Reset

      To reset the Space One back to factory settings, turn on the headphones and then press and hold the power button and volume up button for 5 seconds. The power indicator light will flash slowly three times in red, indicating that the headphones have been reset to factory settings successfully.

      Note: After restoring to factory settings, all function switches will be restored to their default settings. For example, after restoring to factory settings, the wear detection function will be restored to the default closed state. Please reset the function switches according to personal usage habits.

    • How to Switch to BassUp Mode

      1. The "Controls" section of the soundcore app allows you to set the double-tap NC button to activate the BassUp feature. After setting, you can experience the BassUp effect by double-tapping the NC button.
      2. You can also select the Bass Booster EQ in the soundcore app to experience the BassUp effect.

    • How to Enable the Wear Detection Function

      The automatic play/pause feature (Wearing Detection) is turned off by default. Please remove the dustproof sticker on the sensor detection hole inside the left earpads. Enable the "Wearing Detection" in the upper right corner of the soundcore app to activate the Wearing Detection feature.

    • Wearing Calibration Related

      1. If the Wearing Detection function is not sensitive enough, you can use the wearing calibration feature to improve the sensitivity of the wearing detection.
      2. Calibration method: You can perform wearing calibration in the "Wearing Detection" section of the soundcore app's settings menu by following the prompts to restore detection sensitivity. To avoid calibration failure, please pay close attention to the place/wearing guide provided in the souncore app.

    • How to do Firmware Upgrades

      1. You can upgrade the headphone firmware through a pop-up window in the soundcore app.
      2. You can also upgrade the firmware in the "Update Firmware" section of the soundcore app's settings menu

    • Call Control

      1. Press the play/pause button once to answer a call
      2. Press the play/pause button once to end a call
      3. Press and hold the play/pause button for 2 seconds to reject an incoming call
      4. During a call, press and hold the play/pause button for 2 seconds to toggle between the mute and unmute states. A prompt tone will indicate a successful switch.

    • Bluetooth Indicator and Prompt Tone Related Information

      1. Power on:
      Power on tone, battery level voice prompt, power indicator flashes white 3 times and then turns off.
      2. Power off:
      Power off tone, power indicator flashes white 3 times and then turns off.
      3. Bluetooth pairing mode:
      Enters pairing mode with a prompt tone, power indicator flashes blue.
      4. Bluetooth pairing success:
      Bluetooth pairing success tone, power indicator stays on for 3 seconds and then turns off.
      5. Bluetooth disconnection:
      Bluetooth disconnected tone, no light effect.
      6. Reconnection mode:
      Prompt tone, power indicator flashes slowly in blue.

    • Battery Level Indicator and Prompt Tone Related Information

      1. Half an hour before the battery is depleted: Power indicator flashes once every 20 seconds.
      2. Charging: Power indicator stays on in red.
      3. Fully charged: Power indicator turns off.
      4. Battery level below 10%: Power-on prompt for low battery level.
      5. Battery level between 31% and 69%: Power-on prompt for medium battery level.
      6. Battery level above 70%: Power-on prompt for high battery level.

    • Play-time Related

      Tested battery life data for playing specified music on iPhone at 50% volume:
      1. ANC: 40 hours
      2. Transparency: 40 hours
      3. Normal: 55 hours
      4. Fast Charge 5 min: 4 hours under Normal mode.

    • Bluetooth Connection Related

      Bluetooth Connection:
      1. If the device has not been paired before, it will enter into pairing mode once activated. Enable Bluetooth on the device you want to connect to, and select "soundcore Space One" from the list.
      2. Space One will automatically reconnect to devices previously paired.
      3. When the device is turned off, press and hold the Power button for 5 seconds to turn on and enter pairing mode.

      Wired Connection:
      1. Connect Space One to the device using the configured AUX-in cable. By doing this, the Bluetooth function is disabled. Once connected, hold down the power button for roughly 3 seconds to activate Space One. You will hear a audio prompt indicating that the headphones are turned on. Please note in the wired mode, Space One uses the classic EQ.

      Google Fast Pair:
      After turning on the headphones or double-clicking the power button to enter pairing mode, simply bring the headphones close to an Android 6.0 phone running Google Play services version 11.7 or higher to quickly connect through a pop-up window.

    • Multipoint Connection Related

      1. With Space One already connected to a device, you can enter multipoint connection mode by double-clicking the power button. From there, follow the standard Bluetooth connection steps to connect a second device.
      2. Multipoint connection is enabled automatically. If you wish to change this, connect your Space One headphones with the soundcore app, and select Space One from the "Device List". Here, you can manually deactivate multipoint connecting from the settings menu.

    • Device Connection Settings

      Input and output settings are only required for Bluetooth connections:

      1. For Windows computers:
      Device settings: select "soundcore Space One Hands-Free AG Audio" for input and "soundcore Space One Stereo" for output.
      For conference software: select "soundcore Space One Hands-Free AG Audio" for both input and output.

      2. For macOS computers:
      Device settings: select "soundcore Space One" for both input and output.
      For conference software: select "soundcore Space One" for both input and output.

    • Is Space One waterproof and sweatproof?

      Due to structural limitations, headband products, especially in areas such as USB and AUX-in, have a high risk of water and sweat ingress. Therefore, the product itself does not have waterproof and sweat-proof characteristics. However, in terms of craftsmanship, UV protection glue technology has been added to the main risk components and key solder points of the internal PCBA to protect these critical areas with UV glue and reduce the risk of the entire machine.

    • Why is the mute icon on the calling software not synchronized with the microphone status of the headphones?

      On uncertified calling software, the mute icon of the software will not change with the mute/unmute status of Space One's microphone, but the mute/unmute function on both the software and headphone side can still work normally.

    • Why is there no change in call sound quality after adjusting the EQ on the soundcore app?

      The EQ in the soundcore app only affects media sound quality and has no effect on call sound quality

    • What should I do if the volume is not syncing with the device?

      1. For some Android phones, the headphone volume is not synchronized by default and users need to manually enter developer mode to adjust the volume synchronization settings. The method of entering developer mode varies depending on the phone model. For most models, you can enter developer mode by going to "Settings", finding the "Phone Version" option, and tapping it repeatedly until a prompt appears indicating that you have entered developer mode. Then, go to "Developer Options" to adjust the absolute volume setting. If this method does not work, you can search online for specific instructions on how to enter developer mode for your particular phone model.
      2. For HarmonyOS phones, the headphone volume is not synchronized by default. You can directly enable volume synchronization in the settings window that appears when the Bluetooth connection name is displayed.
      3. The media volume and call volume are independent of each other. Therefore, when adjusting the volume during a call, the media volume bar will not change. Similarly, adjusting the media volume bar will not affect the call volume. This does not indicate that the headphone volume is not synchronized with the device.

    • What should I do if Space One cannot enter multimpoint connection pairing mode?

      1. The headphones cannot enter pairing mode during incoming calls or calls in progress. Please try again after ending the call.
      2. The headphones cannot enter multipoint connection pairing mode while in LDAC mode. Please exit LDAC mode in the soundcore app settings and try again.

    • What should I do if reconnection fails?

      1. Reboot the device and headphones and try again.
      2. On the device, click on the Bluetooth name of the headphones in the Bluetooth list to initiate a Bluetooth reconnection.
      3. Select Space One from the list of previously connected devices.
      4. Clear the Bluetooth pairing records on the device and put the headphones into pairing mode and try reconnecting.
      5. Reset the headphones to factory settings and attempt to pair them with the device again.

    • What should I do if Space One encounters disconnection issues?

      1. Try to shorten the connection distance and avoid any walls or obstacles between the headphones and the device.
      2. Rule out the effects of poor network speed or significant environmental interference. You can try switching to a different network or changing the environment where the device and headphones are located to reduce the impact of high-power output interference sources.
      3. Rule out the effects of outdated product firmware versions and device system versions. You can try upgrading the headphones firmware and device system version.

    • What should I do if there is a electrical current sound when connecting to AUX-in cable?

      There may be electrical noise when charging the device while using AUX-In cable. It is recommended to unplug the charging cable and only use battery power when using the device, or use a three-pronged grounded plug.

    • What should I do if I hear calls in poor quality, experience a mic interruption, or no sound from mic?

      1. Try selecting the computer as sound input and output and then switching back to the headphones, restarting the headphones, or exiting the call and then re-entering the call to resolve the issue.
      2. Confirm that the mic is unmuted, the call software is not muted, and the input settings of the call software are correct. Use the input call detection on the call software to confirm that the device or call software can call the headphones microphone normally. If necessary, you can try restarting the call.
      3. If the call quality is poor when using call software, please try to find the following settings in the call app and adjust them:
      4. The AUX-in cable does not have a Mic. If it is in a wired connection state, it will use the connected device's own microphone for the call.

    • What should I do if Space One disconnects, the sound is choppy, or there is no sound?

      1. Avoid playing games while on a call.
      2. Some phones may have a high power output, which can cause voice distortion or excessive call noise when the headphone volume is too high. It is recommended to reduce the headphone volume appropriately.
      3. If it is a software call, try to shorten the connection distance between the headphones and the device, confirm that the input and output selections of the device or call software are correct, switch the output on the call software to the device's built-in speaker and then switch back to the headphones to restore normal call quality.
      4. Rule out the impact of poor network speed or excessive environmental interference. You can try switching to a different network connection, and changing the environment where the device and headphones are located to reduce the impact of highpower output interference sources.
      5. Rule out the impact of outdated product firmware versions, call software, and device system versions. You can try upgrading the headphones, call software, and device system versions.

    • What should I do if the sound does not output from the headphones after answering a phone call through a mobile phone?

      When headphones are connected to an iOS system phone, if the answer/hang-up button on the headphones is used to answer a call, the phone will select the headphones as the output device. If the call is answered on the phone, the phone's speaker will be selected as the output device. To make the output default to the headphones, go to Accessibility-Touch-Call Audio Routing and select "Bluetooth Headset".

    • What should I do if the headphones enter the call mode abnormally?

      When opening the input/output settings page of the computer system, the headphones will enter into the HFP mode (i.e. call state). Please close the settings page.

    • What should I do if the sound quality is poor when using Space One?

      1. Try to adjust the EQ through the soundcore app to improve sound quality
      2. If the headphones are connected to a phone and music is played during a call, the sound quality will deteriorate. Audio transmitted through HFP will cause a decrease in music quality.
      3. If the headphones are connected to a computer, opening the input/output settings page of the computer system will put the headphones in call mode. Audio transmitted through the voice channel will cause a decrease in music quality. Please close the settings page. If the computer is running Windows, make sure to select "soundcore Space One Stereo" as the sound output.
      4. If the headphones are turned off while connected via AUX-in cable, the classic EQ will not be activated and the sound quality will not be as good. Press the power button to turn on the headphones and activate the music EQ for a better listening experience.

    • What should I do if the Wearing Detection function fails?

      1. Check if Wearing Detection is turned on in the soundcore app.
      2. The headphones can only control audio playback apps. Video playback apps may not respond to the music play/pause command sent by the Wearing Detection function.
      3. Some devices may not respond properly to the music play/pause command sent by the Wearing Detection function.
      4. The Wearing Detection function does not work when connected via AUX-in cable. Please use a Bluetooth connection to experience this function.
      5. The Wearing Detection sensor hole is located inside the left earcup. Please make sure there is no hair or clothing blocking the hole when wearing the headphones. When taking off the headphones, flip the left earcup to avoid triggering or mis-triggering the sensor.
      6. If the sensor mirror inside the left earcup is dirty or has condensation, it may not work properly. Please use a cotton swab dipped in alcohol to gently wipe it until the dirt and condensation disappear. Please do not wipe it forcefully to avoid scratching the lens and affecting the recognition accuracy.
      7. If you manually play or pause audio on the device after taking off the headphones, the audio will not automatically play when you put them back on. If you want to enable automatic play/pause when wearing or taking off the headphones, you need to manually play audio on the device again while wearing the headphones.
      8. You can perform wearing calibration in the soundcore app by going to Settings-Wearing Detection-Wearing Calibration in the upper right corner. Please follow the guide images to place and wear the headphones properly to avoid calibration failure.

    • What should I do if I cannot enter the soundcore app?

      When the headphones are connected to two devices at the same time, the soundcore app can only be accessed on one of the devices. Please make sure that the soundcore app is not open on both devices at the same time. If it is, please delete soundcore app from one of the devices and try again.

    • What should I do if Space One cannot be charged?

      1. The headphones can be charged normally when the ambient temperature is between 0-45℃. Please make sure the ambient temperature is within the limited range.
      2. The charging current of the headphones is between 530-560mA. An unqualified or faulty charger may have an output power that is too low, causing the output voltage to drop when connected to a high-current device, resulting in the headphones not being charged. Please replace the charger with one that has sufficient power. It is recommended to use a genuine charger with a rating of 5V/1A or higher.

    • How to better maintain and care for Space One?

      1. It is recommended to use the headphones at least once a month to avoid battery depletion and over-discharge, which can affect the battery life.
      2. Try to avoid overcharging the headphones. Only charge them when the remaining battery is 20% or less.
      3. Place them on a dry, flat surface. If the headphones accidentally get wet, dry them with a hairdryer on the cool setting.
      4. It is recommended not to use the headphones in a low-pressure environment.
      5. Avoid excessive external force that can cause irreversible damage to the headphones and make them unusable.
      6. Sweat has a high salt concentration and is corrosive. Over time, sweat can seep into the leather, causing the leather to weaken and age prematurely. In addition, human skin oils can also damage the leather. Therefore, after use, please clean it with a cotton cloth dipped in 75% medical alcohol and dry it in a ventilated and dry environment. Do not wipe it with water. If it cannot be dried in time, water will accelerate the decomposition of the leather, shortening the life of the leather.
      7. Do not use the headphones in a humid environment. Also, try to avoid leaving the headphones unprotected. After using the headphones, let them dry before putting them in a bag or box. The temperature of the place where the headphones are stored should not be too high or too low. Put a desiccant in the bag or box, which can absorb the moisture in the headphones.
      8. Exposure to sunlight can accelerate the aging of the leather, so try to avoid storing or using the headphones in this environment.
      9. If the ear pads are damaged after their expiration date, please replace them in a timely manner.

    • How should I deal with foreign objects and liquids entering the charging port?

      Be careful to clean up any foreign objects and liquids in the charging port, and let it air dry for 24 hours before charging again.

    • Declaration of Conformity

      A3035-EU DOC

      2024-01-19T03:45:31Z

    • Manual

      A3035-User Manual

      2024-01-19T01:21:54Z

    • Operation Related

      • How to Switch Ambient Sound Modes

        1. Space One automatically sets the default ANC and Transparency levels are both set to 5. These levels can be adjusted through the soundcore app according to personal preference.2. Pressing the NC button once will switch between noise canceling and transparency modes by default. You can add "normal mode" through the soundcore app, after this, you can press the NC button to cycle through noise canceling, transparency, and normal modes.

      • How to Reset

        To reset the Space One back to factory settings, turn on the headphones and then press and hold the power button and volume up button for 5 seconds. The power indicator light will flash slowly three times in red, indicating that the headphones have been reset to factory settings successfully.Note: After restoring to factory settings, all function switches will be restored to their default settings. For example, after restoring to factory settings, the wear detection function will be restored to the default closed state. Please reset the function switches according to personal usage habits.

      • How to Switch to BassUp Mode

        1. The "Controls" section of the soundcore app allows you to set the double-tap NC button to activate the BassUp feature. After setting, you can experience the BassUp effect by double-tapping the NC button.2. You can also select the Bass Booster EQ in the soundcore app to experience the BassUp effect.

      • How to Enable the Wear Detection Function

        The automatic play/pause feature (Wearing Detection) is turned off by default. Please remove the dustproof sticker on the sensor detection hole inside the left earpads. Enable the "Wearing Detection" in the upper right corner of the soundcore app to activate the Wearing Detection feature.

      • Wearing Calibration Related

        1. If the Wearing Detection function is not sensitive enough, you can use the wearing calibration feature to improve the sensitivity of the wearing detection.2. Calibration method: You can perform wearing calibration in the "Wearing Detection" section of the soundcore app's settings menu by following the prompts to restore detection sensitivity. To avoid calibration failure, please pay close attention to the place/wearing guide provided in the souncore app.

      • How to do Firmware Upgrades

        1. You can upgrade the headphone firmware through a pop-up window in the soundcore app.2. You can also upgrade the firmware in the "Update Firmware" section of the soundcore app's settings menu

      • Call Control

        1. Press the play/pause button once to answer a call2. Press the play/pause button once to end a call3. Press and hold the play/pause button for 2 seconds to reject an incoming call4. During a call, press and hold the play/pause button for 2 seconds to toggle between the mute and unmute states. A prompt tone will indicate a successful switch.

      • Bluetooth Indicator and Prompt Tone Related Information

        1. Power on: Power on tone, battery level voice prompt, power indicator flashes white 3 times and then turns off.2. Power off: Power off tone, power indicator flashes white 3 times and then turns off.3. Bluetooth pairing mode: Enters pairing mode with a prompt tone, power indicator flashes blue.4. Bluetooth pairing success: Bluetooth pairing success tone, power indicator stays on for 3 seconds and then turns off.5. Bluetooth disconnection: Bluetooth disconnected tone, no light effect.6. Reconnection mode: Prompt tone, power indicator flashes slowly in blue.

      • Battery Level Indicator and Prompt Tone Related Information

        1. Half an hour before the battery is depleted: Power indicator flashes once every 20 seconds. 2. Charging: Power indicator stays on in red. 3. Fully charged: Power indicator turns off. 4. Battery level below 10%: Power-on prompt for low battery level. 5. Battery level between 31% and 69%: Power-on prompt for medium battery level. 6. Battery level above 70%: Power-on prompt for high battery level.

      • Play-time Related

        Tested battery life data for playing specified music on iPhone at 50% volume:1. ANC: 40 hours2. Transparency: 40 hours3. Normal: 55 hours4. Fast Charge 5 min: 4 hours under Normal mode.

    • Connection Related

      • Bluetooth Connection Related

        Bluetooth Connection:1. If the device has not been paired before, it will enter into pairing mode once activated. Enable Bluetooth on the device you want to connect to, and select "soundcore Space One" from the list.2. Space One will automatically reconnect to devices previously paired.3. When the device is turned off, press and hold the Power button for 5 seconds to turn on and enter pairing mode.Wired Connection:1. Connect Space One to the device using the configured AUX-in cable. By doing this, the Bluetooth function is disabled. Once connected, hold down the power button for roughly 3 seconds to activate Space One. You will hear a audio prompt indicating that the headphones are turned on. Please note in the wired mode, Space One uses the classic EQ.Google Fast Pair:After turning on the headphones or double-clicking the power button to enter pairing mode, simply bring the headphones close to an Android 6.0 phone running Google Play services version 11.7 or higher to quickly connect through a pop-up window.

      • Multipoint Connection Related

        1. With Space One already connected to a device, you can enter multipoint connection mode by double-clicking the power button. From there, follow the standard Bluetooth connection steps to connect a second device. 2. Multipoint connection is enabled automatically. If you wish to change this, connect your Space One headphones with the soundcore app, and select Space One from the "Device List". Here, you can manually deactivate multipoint connecting from the settings menu.

      • Device Connection Settings

        Input and output settings are only required for Bluetooth connections:1. For Windows computers:Device settings: select "soundcore Space One Hands-Free AG Audio" for input and "soundcore Space One Stereo" for output.For conference software: select "soundcore Space One Hands-Free AG Audio" for both input and output.2. For macOS computers:Device settings: select "soundcore Space One" for both input and output.For conference software: select "soundcore Space One" for both input and output.

    • Specifications

      • Is Space One waterproof and sweatproof?

        Due to structural limitations, headband products, especially in areas such as USB and AUX-in, have a high risk of water and sweat ingress. Therefore, the product itself does not have waterproof and sweat-proof characteristics. However, in terms of craftsmanship, UV protection glue technology has been added to the main risk components and key solder points of the internal PCBA to protect these critical areas with UV glue and reduce the risk of the entire machine.

    • Call Related

      • Why is the mute icon on the calling software not synchronized with the microphone status of the headphones?

        On uncertified calling software, the mute icon of the software will not change with the mute/unmute status of Space One's microphone, but the mute/unmute function on both the software and headphone side can still work normally.

      • Why is there no change in call sound quality after adjusting the EQ on the soundcore app?

        The EQ in the soundcore app only affects media sound quality and has no effect on call sound quality

    • Troubleshooting Related

      • What should I do if the volume is not syncing with the device?

        1. For some Android phones, the headphone volume is not synchronized by default and users need to manually enter developer mode to adjust the volume synchronization settings. The method of entering developer mode varies depending on the phone model. For most models, you can enter developer mode by going to "Settings", finding the "Phone Version" option, and tapping it repeatedly until a prompt appears indicating that you have entered developer mode. Then, go to "Developer Options" to adjust the absolute volume setting. If this method does not work, you can search online for specific instructions on how to enter developer mode for your particular phone model.2. For HarmonyOS phones, the headphone volume is not synchronized by default. You can directly enable volume synchronization in the settings window that appears when the Bluetooth connection name is displayed.3. The media volume and call volume are independent of each other. Therefore, when adjusting the volume during a call, the media volume bar will not change. Similarly, adjusting the media volume bar will not affect the call volume. This does not indicate that the headphone volume is not synchronized with the device.

      • What should I do if Space One cannot enter multimpoint connection pairing mode?

        1. The headphones cannot enter pairing mode during incoming calls or calls in progress. Please try again after ending the call.2. The headphones cannot enter multipoint connection pairing mode while in LDAC mode. Please exit LDAC mode in the soundcore app settings and try again.

      • What should I do if reconnection fails?

        1. Reboot the device and headphones and try again.2. On the device, click on the Bluetooth name of the headphones in the Bluetooth list to initiate a Bluetooth reconnection.3. Select Space One from the list of previously connected devices.4. Clear the Bluetooth pairing records on the device and put the headphones into pairing mode and try reconnecting.5. Reset the headphones to factory settings and attempt to pair them with the device again.

      • What should I do if Space One encounters disconnection issues?

        1. Try to shorten the connection distance and avoid any walls or obstacles between the headphones and the device.2. Rule out the effects of poor network speed or significant environmental interference. You can try switching to a different network or changing the environment where the device and headphones are located to reduce the impact of high-power output interference sources.3. Rule out the effects of outdated product firmware versions and device system versions. You can try upgrading the headphones firmware and device system version.

      • What should I do if there is a electrical current sound when connecting to AUX-in cable?

        There may be electrical noise when charging the device while using AUX-In cable. It is recommended to unplug the charging cable and only use battery power when using the device, or use a three-pronged grounded plug.

      • What should I do if I hear calls in poor quality, experience a mic interruption, or no sound from mic?

        1. Try selecting the computer as sound input and output and then switching back to the headphones, restarting the headphones, or exiting the call and then re-entering the call to resolve the issue.2. Confirm that the mic is unmuted, the call software is not muted, and the input settings of the call software are correct. Use the input call detection on the call software to confirm that the device or call software can call the headphones microphone normally. If necessary, you can try restarting the call.3. If the call quality is poor when using call software, please try to find the following settings in the call app and adjust them:4. The AUX-in cable does not have a Mic. If it is in a wired connection state, it will use the connected device's own microphone for the call.

      • What should I do if Space One disconnects, the sound is choppy, or there is no sound?

        1. Avoid playing games while on a call. 2. Some phones may have a high power output, which can cause voice distortion or excessive call noise when the headphone volume is too high. It is recommended to reduce the headphone volume appropriately.3. If it is a software call, try to shorten the connection distance between the headphones and the device, confirm that the input and output selections of the device or call software are correct, switch the output on the call software to the device's built-in speaker and then switch back to the headphones to restore normal call quality.4. Rule out the impact of poor network speed or excessive environmental interference. You can try switching to a different network connection, and changing the environment where the device and headphones are located to reduce the impact of highpower output interference sources.5. Rule out the impact of outdated product firmware versions, call software, and device system versions. You can try upgrading the headphones, call software, and device system versions.

      • What should I do if the sound does not output from the headphones after answering a phone call through a mobile phone?

        When headphones are connected to an iOS system phone, if the answer/hang-up button on the headphones is used to answer a call, the phone will select the headphones as the output device. If the call is answered on the phone, the phone's speaker will be selected as the output device. To make the output default to the headphones, go to Accessibility-Touch-Call Audio Routing and select "Bluetooth Headset".

      • What should I do if the headphones enter the call mode abnormally?

        When opening the input/output settings page of the computer system, the headphones will enter into the HFP mode (i.e. call state). Please close the settings page.

      • What should I do if the sound quality is poor when using Space One?

        1. Try to adjust the EQ through the soundcore app to improve sound quality2. If the headphones are connected to a phone and music is played during a call, the sound quality will deteriorate. Audio transmitted through HFP will cause a decrease in music quality.3. If the headphones are connected to a computer, opening the input/output settings page of the computer system will put the headphones in call mode. Audio transmitted through the voice channel will cause a decrease in music quality. Please close the settings page. If the computer is running Windows, make sure to select "soundcore Space One Stereo" as the sound output.4. If the headphones are turned off while connected via AUX-in cable, the classic EQ will not be activated and the sound quality will not be as good. Press the power button to turn on the headphones and activate the music EQ for a better listening experience.

      • What should I do if the Wearing Detection function fails?

        1. Check if Wearing Detection is turned on in the soundcore app.2. The headphones can only control audio playback apps. Video playback apps may not respond to the music play/pause command sent by the Wearing Detection function.3. Some devices may not respond properly to the music play/pause command sent by the Wearing Detection function.4. The Wearing Detection function does not work when connected via AUX-in cable. Please use a Bluetooth connection to experience this function.5. The Wearing Detection sensor hole is located inside the left earcup. Please make sure there is no hair or clothing blocking the hole when wearing the headphones. When taking off the headphones, flip the left earcup to avoid triggering or mis-triggering the sensor.6. If the sensor mirror inside the left earcup is dirty or has condensation, it may not work properly. Please use a cotton swab dipped in alcohol to gently wipe it until the dirt and condensation disappear. Please do not wipe it forcefully to avoid scratching the lens and affecting the recognition accuracy.7. If you manually play or pause audio on the device after taking off the headphones, the audio will not automatically play when you put them back on. If you want to enable automatic play/pause when wearing or taking off the headphones, you need to manually play audio on the device again while wearing the headphones.8. You can perform wearing calibration in the soundcore app by going to Settings-Wearing Detection-Wearing Calibration in the upper right corner. Please follow the guide images to place and wear the headphones properly to avoid calibration failure.

      • What should I do if I cannot enter the soundcore app?

        When the headphones are connected to two devices at the same time, the soundcore app can only be accessed on one of the devices. Please make sure that the soundcore app is not open on both devices at the same time. If it is, please delete soundcore app from one of the devices and try again.

      • What should I do if Space One cannot be charged?

        1. The headphones can be charged normally when the ambient temperature is between 0-45℃. Please make sure the ambient temperature is within the limited range.2. The charging current of the headphones is between 530-560mA. An unqualified or faulty charger may have an output power that is too low, causing the output voltage to drop when connected to a high-current device, resulting in the headphones not being charged. Please replace the charger with one that has sufficient power. It is recommended to use a genuine charger with a rating of 5V/1A or higher.

    • Others

      • How to better maintain and care for Space One?

        1. It is recommended to use the headphones at least once a month to avoid battery depletion and over-discharge, which can affect the battery life.2. Try to avoid overcharging the headphones. Only charge them when the remaining battery is 20% or less.3. Place them on a dry, flat surface. If the headphones accidentally get wet, dry them with a hairdryer on the cool setting.4. It is recommended not to use the headphones in a low-pressure environment.5. Avoid excessive external force that can cause irreversible damage to the headphones and make them unusable.6. Sweat has a high salt concentration and is corrosive. Over time, sweat can seep into the leather, causing the leather to weaken and age prematurely. In addition, human skin oils can also damage the leather. Therefore, after use, please clean it with a cotton cloth dipped in 75% medical alcohol and dry it in a ventilated and dry environment. Do not wipe it with water. If it cannot be dried in time, water will accelerate the decomposition of the leather, shortening the life of the leather.7. Do not use the headphones in a humid environment. Also, try to avoid leaving the headphones unprotected. After using the headphones, let them dry before putting them in a bag or box. The temperature of the place where the headphones are stored should not be too high or too low. Put a desiccant in the bag or box, which can absorb the moisture in the headphones.8. Exposure to sunlight can accelerate the aging of the leather, so try to avoid storing or using the headphones in this environment.9. If the ear pads are damaged after their expiration date, please replace them in a timely manner.

      • How should I deal with foreign objects and liquids entering the charging port?

        Be careful to clean up any foreign objects and liquids in the charging port, and let it air dry for 24 hours before charging again.

    • Documents & Drivers

      • Declaration of Conformity

        A3035-EU DOC

        2024-01-19T03:45:31Z

      • Manual

        A3035-User Manual

        2024-01-19T01:21:54Z

    You may also like

    Space One | Active Noise Cancelling Headphones (68)

    Space One | Active Noise Cancelling Headphones (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Delena Feil

    Last Updated:

    Views: 6314

    Rating: 4.4 / 5 (65 voted)

    Reviews: 88% of readers found this page helpful

    Author information

    Name: Delena Feil

    Birthday: 1998-08-29

    Address: 747 Lubowitz Run, Sidmouth, HI 90646-5543

    Phone: +99513241752844

    Job: Design Supervisor

    Hobby: Digital arts, Lacemaking, Air sports, Running, Scouting, Shooting, Puzzles

    Introduction: My name is Delena Feil, I am a clean, splendid, calm, fancy, jolly, bright, faithful person who loves writing and wants to share my knowledge and understanding with you.