Menu
Your Cart

Lenovo 45W Type-C Power Adapter for Laptops

Lenovo 45W Type-C Power Adapter for Laptops
-53 %
Lenovo 45W Type-C Power Adapter for Laptops
  • Price: TK 2,850/-
  • special price: TK 1,350/-
  • Stock: In Stock
  • Model: 45W Type-C
TK 1,350/-
TK 2,850/-
Ex Tax: TK 1,350/-

Key Features

    • For Brand: Lenovo
    • Model: 45w
    • Type: Type-C
    • Output Voltage:DC 5V/12V/20V ~ 2A/3A/2.25A
    • Input Voltage: AC 100-240V, 50/60Hz
    • Warranty: 1 year
Specification
General Feature
For BrandLenovo
ModelLenovo Thinkpad Notebooks/ Ultrabooks/Tablet PCs: 13 20J1, 20J2; L470 20J5; P51s 20HB, 20HC; T470 20HD, 20HE; T470s 20HF, 20HG; T570 20H9, 20HA; X1 Carbon 20HQ, 20HR; X1 Tablet 20JB, 20JC; X1 Yoga 20JD, 20JE, 20JF, 20JG and X270 20HM, 20HN.
TypeType-C
Technical Info
Wattage (W)45w
Input VoltageAC 100-240V, 50/60Hz
Output VoltageDC 5V/12V/20V ~ 2A/3A/2.25A
Warranty Information
Warranty1 Year
Description

Lenovo 45W Type-C Power Adapter for Laptops Available at Dear IT Solution

Power your Lenovo devices with the Lenovo 45W Type-C Power Adapter, now available at Dear IT Solution. This versatile adapter is designed to provide reliable and efficient charging for a wide range of Lenovo ThinkPad notebooks, Ultrabooks, and Tablet PCs.

Key Features and Specifications

Model: 45W
Input: AC 100-240V, 50/60Hz
Output:
DC 5V ~ 2A
DC 12V ~ 3A
DC 20V ~ 2.25A

Compatible Lenovo Models

This Lenovo 45W Type-C Power Adapter is compatible with the following Lenovo ThinkPad devices:

ThinkPad 13: 20J1, 20J2
ThinkPad L470: 20J5
ThinkPad P51s: 20HB, 20HC
ThinkPad T470: 20HD, 20HE
ThinkPad T470s: 20HF, 20HG
ThinkPad T570: 20H9, 20HA
ThinkPad X1 Carbon: 20HQ, 20HR
ThinkPad X1 Tablet: 20JB, 20JC
ThinkPad X1 Yoga: 20JD, 20JE, 20JF, 20JG
ThinkPad X270: 20HM, 20HN

Why Choose This Lenovo Type-C Power Adapter?

Versatile Output Options: Multiple voltage and current settings make it compatible with various devices.
Compact and Portable: Ideal for travel and daily use, with a lightweight and easy-to-carry design.
Best Price in Bangladesh: Available at Dear IT Solution at an unbeatable price for premium quality.
Order Now from Dear IT Solution
Get the Lenovo 45W Type-C Power Adapter from Dear IT Solution today! We provide only original, certified products to ensure the best performance for your Lenovo devices. Enjoy a reliable power solution for your laptop, Ultrabook, or tablet at the best price in Bangladesh!


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