Menu
Your Cart

Battery for ASUS X555 (C21N1347)

Battery for ASUS X555 (C21N1347)
Battery for ASUS X555 (C21N1347)
  • Price: TK 2,950/-
  • Stock: In Stock
  • Model: X555
  • MPN: C21N1347
TK 2,950/-
Ex Tax: TK 2,950/-

Key Features

    • Brand: For Asus
    • Model:Asus X555 (C21N1347)
    • Battery Type:Lithium-Ion
    • Voltage:7.5V
    • Battery Capacity:37Wh
    • warranty:6 Months
Specification
General Feature
BrandFor Asus
ModelASUS X555 (C21N1347)
Part NoC21N1347 bh302ll/63/134
Power
Battery TypeLithium Ion
Battery Capacity37Wh
Battery Cells6 Cells
Physical Attributes
ColorBlack
Compatible WithASUS X555, X555L, X555LA, X555LB, X555LD, X555LF, X555LI, X555LJ, X555LN, X555LP
Warranty Information
Warranty6 Month
Description

ASUS X555 (C21N1347) Battery 7.5V | Best Price in BD

At Dear IT Solution, we provide the best quality product insured in Bangladesh for the ASUS X555 (C21N1347) notebook and compatible models. This reliable Lithium-Ion battery is engineered for optimal performance, ensuring your laptop operates smoothly for all your tasks.

Features and Compatibility

    Compatibility: Specifically designed for the ASUS X555 series, including models X555L, X555LA, X555LB, X555LD, X555LF, X555LI, X555LJ, X555LN, and X555LP.
    Battery Type: Lithium-Ion with 6 cells, providing efficient energy consumption and durability.
    Capacity: 37Wh for extended usage, perfect for both professional and personal use.
    Voltage: 7.5V for consistent power delivery and performance reliability.
    Color: Black, seamlessly matching your laptop's design.
    Product Part Number: C21N1347, bh302ll/63/134.
    Best Quality Product Insured in Bangladesh: This battery meets stringent quality standards to ensure longevity and dependable performance.

Maintenance Tips for Prolonged Battery Life

To maximize the lifespan of your ASUS X555 (C21N1347) battery, follow these simple maintenance tips:

    First Use: Fully charge the battery before the initial use for optimal capacity.
    Regular Charging: Avoid letting the battery completely discharge; charge it regularly.
    Temperature Control: Store the battery in a cool, dry place to prevent overheating and moisture damage.
    Safe Handling: Handle with care to avoid physical damage, such as drops or impacts.
    Storage: If not in use for an extended period, keep the battery at around 50% charge in a cool environment to preserve its health.

By following these tips, you can ensure that your ASUS X555 notebook battery delivers reliable power and longevity.

At Dear IT Solution, this battery is available at the best price in Bangladesh, with guaranteed quality

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};