Skip to content
🚚 Need it fast? 🚚 Express Delivery in 3–4 business days—select at checkout!
🚚 Need it fast? 🚚 Express Delivery in 3–4 business days—select at checkout!

Aneroid Sphygmomanometer with Stethoscope OAS102

Sold out
MRP:
Original price ₹ 1,390.00
Original price ₹ 1,390.00 - Original price ₹ 1,390.00
Original price ₹ 1,390.00
Current price ₹ 1,099.00
₹ 1,099.00 - ₹ 1,099.00
Current price ₹ 1,099.00

(Inclusive of all taxes)

Save 5% Instantly When You Pay Online

Availability:
Out of stock

This compact and reliable Aneroid Sphygmomanometer comes with an adult velcro fabric cuff and a precision manometer with a clip for a fix. It also comes with a soft cotton cuff, emulsoid bladder & soft emulsoid bulb, an easy to carry leather bag, and is latex-free for your safety.

Features

✔ Aneroid gauge
✔ Latex bladder & bulb
✔ Inflation bulb & valve
✔ Leather carrying case
✔ Single-head stethoscope
✔ Adult-size cuff with D-Ring

Care

✔ Read the manual instructions before use
✔ Pressure gauge should be handled with care
✔ Needle should indicate zero when the cuff is fully deflated
✔ Inflation bulb and valve

Additional Info

✔ Model number: OAS102
✔ Warranty: 12 months
✔ Box Dimension: 18 x 10 x 7 cms
✔ Net quantity: 1 Unit
✔ Accuracy: ±3mmHg/ Sub Division:2mmHg
✔ Manufactured by: Passim Lifesciences Ltd., Plot No. 45, IA-2, Panchkula, Haryana 134113 India
✔ Marketed by: Odin Healthcare Pvt. Ltd., Plot No. 45, IA-2, Panchkula, Haryana 134113 India
✔ Country of origin: India

Shipping & Returns

SHIPPING -
✔ Free shipping on orders above 799
✔ Products are shipped from our warehouse within 1 to 2 working days
✔ The order will be delivered in 5-8 business days from the date of dispatch
✔ You will receive the order tracking number as soon as we ship your order

RETURNS -
✔ We have 7 days return policy (only for manufacturing defects or you receive the wrong product)
✔ Please ensure that the products you return are unused
✔ Only replacement will be applicable on order
✔ Don’t accept if the package is tampered

Enjoy a 5% discount on every order when you choose to pay via Razorpay. No minimum purchase required.

Enjoy a hassle-free 7-day exchange policy. If there's a manufacturing defect or you receive the wrong product, we'll send you a free replacement.

Choose how you pay—use Debit/Credit Cards, UPI, Net Banking, Wallets, EMI options, or CRED. Cash on Delivery is also available for your convenience.

For bulk Inquiries




document.addEventListener('DOMContentLoaded', function() { // Wait a bit for everything to load setTimeout(function() { initStickyGallery(); }, 100); }); function initStickyGallery() { const gallery = document.querySelector('.product-gallery'); const productMain = document.querySelector('.product-main'); // If elements don't exist, exit if (!gallery || !productMain) return; // Track if sticky is active let isStickyActive = true; function checkSticky() { // Only run on desktop if (window.innerWidth < 1024) { if (isStickyActive) { gallery.style.position = ''; gallery.classList.remove('sticky-ended'); isStickyActive = false; } return; } // Get positions const galleryRect = gallery.getBoundingClientRect(); const productMainRect = productMain.getBoundingClientRect(); const footer = document.querySelector('footer') || document.querySelector('.site-footer'); const footerRect = footer ? footer.getBoundingClientRect() : null; // Get the bottom of the right column content const rightColumnBottom = productMainRect.bottom; const viewportHeight = window.innerHeight; // Also check if gallery would hit the footer let galleryWouldHitFooter = false; if (footerRect) { const galleryBottomRelative = galleryRect.top + gallery.offsetHeight; if (galleryBottomRelative >= footerRect.top - 50) { galleryWouldHitFooter = true; } } // Condition to end sticky: // Either right column content is fully scrolled past viewport // OR gallery would overlap with footer if (rightColumnBottom <= viewportHeight + 100 || galleryWouldHitFooter) { if (isStickyActive) { gallery.style.position = 'relative'; gallery.classList.add('sticky-ended'); isStickyActive = false; } } else { if (!isStickyActive) { gallery.style.position = 'sticky'; gallery.style.top = '30px'; gallery.classList.remove('sticky-ended'); isStickyActive = true; } } } // Run on scroll and resize window.addEventListener('scroll', checkSticky); window.addEventListener('resize', checkSticky); // Initial check checkSticky(); }