Menu
Your Cart

TP-Link Deco E4 2 Pack Mesh Dual-band Router

TP-Link Deco E4 2 Pack Mesh  Dual-band Router
TP-Link Deco E4 2 Pack Mesh Dual-band Router
  • Price: TK 4,999/-
  • Stock: In Stock
  • Model: TP-Link Deco E4
TK 4,999/-
Ex Tax: TK 4,999/-

Key Features

    • Model:TP-Link Deco E4
    • Brand:TP-link
    • Deliver Wi-Fi to an area of up to 1500 square feet
    • connect up to 100 devices
    • Speed up to 1167 Mbps
    Specification
    General Feature
    BrandTP-Link
    Model TP-Link Deco E4
    Data TransferSpeed up to 1167 Mbps
    Antenna2 internal dual-band antennas per Deco unit
    Frequency2.4 GHz and 5 GHz
    Technical Info
    Operating TemperatureiOS 9.0 or later Android 4.3 or later
    Physical Attributes
    Dimensions7.5 x 3.6 x 3.6 in (190.5 x 90.7 x 90.7 mm)
    Warranty Information
    Warranty1 Year Warranty
    Description


    TP-Link Deco E4 (2 Pack) Whole Home Mesh Wi-Fi System AC1200 Dual-band Router 
    The TP-Link Deco E4 (2 Pack) Whole Home Mesh Wi-Fi System provides comprehensive Wi-Fi coverage throughout your home with its advanced mesh technology. This system is designed to eliminate dead zones, offering smooth, reliable internet connections even in larger spaces.

    Key Features
    Model: TP-Link Deco E4

    Coverage Area: Up to 2,800 square feet

    With dual units working together, this system expands your Wi-Fi coverage, making it ideal for larger homes with extensive coverage needs.
    Device Support: Connect up to 100 devices

    This system can handle multiple devices at once, maintaining strong connections for smartphones, tablets, laptops, and other smart home devices.
    Dual-Band Frequency: 2.4 GHz and 5 GHz

    The Deco E4 uses both 2.4 GHz and 5 GHz bands, providing flexibility and reliable connections to optimize speed and range.
    Speed: Up to 1167 Mbps

    High-speed AC1200 ensures fast internet across all connected devices, suitable for HD streaming, online gaming, and high-speed browsing.
    With its dual-unit setup, the TP-Link Deco E4 (2 Pack) is a versatile solution for seamless and stable internet coverage across your entire home. Perfect for busy households and smart home setups, it provides a powerful mesh network that keeps all devices connected smoothly and efficiently.

    Why Buy from Dear IT Solution

    buy TP-LinkDeco E4 (Single Pack) Whole Home Mesh Wi-Fi System AC1200 Dual-bandRouter at Dear IT Solution and enjoy the best network technology at unbeatable prices.


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