Menu
Your Cart

Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB Laptop Battery

Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB Laptop Battery
Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB Laptop Battery
  • Price: TK 7,500/-
  • Stock: In Stock
  • Model: Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB
TK 7,500/-
Ex Tax: TK 7,500/-

Key Features

    • Laptop Battery for Lenovo Miix 510 520 510-12ISK 510-12IKB
    • Battery Type : Lithium Ion
    • Batery Cell : 04 Cell
    • Voltage : 7.68V
    • Capacity : 38Wh
    Specification
    General Feature
    BrandLenovo
    ModelLenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB
    Part No5B10L68713 BSN04170A5-LH BSNO4170A5-AT
    Power
    Battery TypeLi-Ion
    Battery Capacity38w
    Battery Cells04 Cells
    Physical Attributes
    ColorBlack
    Compatible WithLenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB
    Warranty Information
    Warranty06 Month
    Description

    Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB Laptop Battery

    Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB Laptop Battery
    The Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB Laptop Battery is a high-performance replacement battery designed to deliver reliable power and extended usage time. Whether you’re working, attending meetings, or simply browsing the web, this battery keeps your device running smoothly without interruption.

    Engineered specifically for the Lenovo Miix 510 and 520 series, this battery ensures perfect fit and compatibility. It uses advanced lithium-ion cell technology to deliver consistent and efficient power, supporting your productivity and entertainment throughout the day. With optimal charge cycles and long backup capacity, it’s the ideal solution for replacing old or failing batteries.

    Safety is a priority with this battery, which includes built-in protection features against overcharging, short-circuiting, and overheating. It’s lightweight and compact, preserving the sleek design of your Lenovo Miix while enhancing portability and performance.

    Installation is easy, allowing you to replace your battery quickly and bring your device back to life. Whether you're at home, on the move, or at work, the Lenovo Miix battery is a dependable choice for everyday laptop use.


    Buy Lenovo Miix 510 520 Original Laptop Battery from Dear IT Solution

    In Bangladesh, you can get the Lenovo Ideapad Miix 510 520 510-12ISK 80U1 510-12IKB Laptop Battery from Dear IT Solution at the best price. We stock a wide range of high-quality laptop batteries to meet your needs. Shop online or visit our store for expert support and fast delivery. This battery comes with a 1-year warranty, ensuring best quality product insured in Bangladesh and full customer satisfaction


    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};