Wireless Bluetooth Earbuds with 13mm Drivers, Upto 50 Hours of battery life, BEAST™ Mode, Quad Mics with ENx™ Technology
Get 5% OFF on purchase of 2 or more items
Available Cover Colours
Test Draft Copy of boAt Airdopes 170 Silicon Cover
The product and silicon cover will be delivered in a single brown box.
The silicon cover color will match the product color to ensure optimal appearance and fit. Customization or selection of alternate cover colors is not available.
Only true wireless earbuds are eligible for replacement, covers are non returnable
Images displayed are for representational purposes only. The actual color of the silicon cover may vary slightly.
When you select a color variant and add the product to the cart, a matching cover will be added automatically. You can remove it from the cart if needed.
Sale price₹3,499.00
MRP(Inclusive of all taxes)
Get a silicone case @ ₹
Choose your colour :
Frost White
Make Your Product Personalised
Get A Customized Engraving And Make It Unmistakably Yours.
Personalize Your Airdopes 170
Limit text to alphabets, numbers & select
special characters
Characters allowed:
!,@,#,$,%,^,&,*,(,),_,-
.
Don’t use emojis. Max. 12 characters allowed
*T&C Apply
Terms & Conditions for product personalization
Estimated delivery time is 7-10 days.
All orders will be accepted via prepaid payment methods only. Cash on Delivery will not be applicable for product personalization
No cancellations or refunds will be allowed post-packaging of the order
No refunds will be processed for orders under any circumstances. In case of delivery failures, only reshipment will be attempted
Reshipment may take up to 15 days for any product returned to origin
Product exchanges within warranty period will provided without engraving
Image shown above is representational. Product color, font placement, font color might vary in reality
boAt Airdopes 170 - Wireless Bluetooth Earbuds with Long Battery Backup
Introducing the revolutionary Airdopes 170 earbuds– your ultimate audio companion for an uninterrupted listening experience. With an astonishing 50 Hours playback, you can indulge in your playlist all day long without any interruptions. These wireless earbuds also come equipped with exceptional call clarity, making your conversations crystal clear and hassle-free. Enjoy your favourite movies and videos without lag with its BEAST™ Mode.
Battery That Outlasts A Day
With up to 50 Hours of battery life, dive into effortless listening all day and night. Not just this, with ASAP™ Charge, charge for 10 Minutes & get 180 Minutes of playtime! Keep your private concert going for as long as you want.
Quad Mics with ENx™ Technology
Enjoy hassle-free, hands-free calls with crystal clear voice quality. Airdopes 170 is equipped with 4 microphones so that you are always heard in perfect clarity.
BEAST™ Mode (50ms Low Latency)
Witness the power of sound. Equipped with ultra-low latency enabled by BEAST™ Mode these wireless earbuds let you hear every note with a new sense of clarity.
boAt Signature Sound with 13mm Drivers
Nothing beats the incredibly clear music from the expertly tuned 13 mm drivers of Airdopes 170. Powered with boAt Signature Sound, they make you hear every beat come alive.
Open To Connect
The Insta Wake N’ Pair technology lets you seamlessly pair the buds as soon as you open the case lid. And the advanced BT v5.3 technology makes sure you stay connected without any interruptions.
Specifications
Connect & Play
Bluetooth Version
v5.3
IPX Rating
IPX4
Music Playtime
Up to 50 Hours
ASAP Charge
Yes
Beast Mode
Yes
Operating Range
10m
Driver Size
13mm
Frequency
20Hz-20KHz
Battery
470mAh(Case) / 40mAh*2 Earbuds
Compatibility
All Bluetooth Devices
Charging Interface
Type C
Country Of Origin
India
specifications
Nonstop music upto 50 hours
IPX4 Sweat & water resistance
quad mics with ENxTM Technology
ASAPTM Fast charge
let isActive = false;
let lastScrollTime = 0;
const scrollContainer = document.querySelector(".scroll-section-inner");
// Throttle the wheel scroll to prevent fast scrolling issues
const throttle = (func, delay) => {
let lastTime = 0;
return (...args) => {
const now = new Date().getTime();
if (now - lastTime >= delay) {
func(...args);
lastTime = now;
}
};
};
// Watch when the section is mostly visible
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
isActive = entry.isIntersecting && entry.intersectionRatio >= 1;
});
}, {
root: null,
threshold: 1
});
observer.observe(scrollContainer);
// Helper to check if section is scrollable left or right
function canScrollHorizontally(container, delta) {
const atStart = container.scrollLeft <= 0 && delta < 0;
const atEnd = container.scrollLeft + container.clientWidth >= container.scrollWidth && delta > 0;
return !(atStart || atEnd);
}
// Handle wheel (desktop) with faster throttle
window.addEventListener("wheel", throttle((e) => {
if (isActive && Math.abs(e.deltaY) > Math.abs(e.deltaX)) {
// Faster scroll response by using a larger value for horizontal scroll
const scrollAmount = e.deltaY * 1.5; // Adjust multiplier for faster response
if (canScrollHorizontally(scrollContainer, scrollAmount)) {
scrollContainer.scrollLeft += scrollAmount;
e.preventDefault();
}
}
}, 20), { passive: false });
// Handle touch (mobile)
let startX = 0, startY = 0;
window.addEventListener("touchstart", (e) => {
startX = e.touches[0].clientX;
startY = e.touches[0].clientY;
});
window.addEventListener("touchmove", (e) => {
if (!isActive) return;
const dx = e.touches[0].clientX - startX;
const dy = e.touches[0].clientY - startY;
if (Math.abs(dy) > Math.abs(dx)) {
const scrollAmount = -dy * 1.5; // Adjust multiplier for faster response
if (canScrollHorizontally(scrollContainer, scrollAmount)) {
scrollContainer.scrollLeft += scrollAmount;
e.preventDefault();
}
}
startX = e.touches[0].clientX;
startY = e.touches[0].clientY;
}, { passive: false });