Menu
Your Cart

Digital X 1200VA Offline UPS

Digital X 1200VA Offline UPS
Digital X 1200VA Offline UPS
  • Price: TK 6,200/-
  • Stock: In Stock
  • Model: Digital X 1200VA
TK 6,200/-
Ex Tax: TK 6,200/-

Key Features

    • Model: Digital X 1200VA
    • Automatic Voltage Regulator
    • Capacity: 1200VA
    • Load Capacity: 600W
    • Frequency: 50 - 60Hz
    Specification
    General Feature
    BrandDigital X
    ModelDigital X 1200VA
    Capacity600W
    Frequency50 - 60Hz
    Output Features
    Backup Time15 to 40 Minutes
    Technical Info
    Battery2 pcs, 12V, 7AH
    Input Voltage85 - 135V
    Output Voltage100 - 220V
    Warranty Information
    Warranty01 Year Warranty
    Description

    Digital X 1200VA Offline UPS

    Digital X 1200VA Offline UPS  is an advanced, reliable power backup solution designed to ensure your critical electronic devices receive constant, uninterrupted power during unexpected outages or voltage irregularities. With a power capacity of 1200VA/720W, this UPS is ideal for powering desktops, workstations, routers, small servers, CCTV systems, and other electronic equipment in both home and office environments.

    Built with microprocessor-controlled technology, the Digital X 1200VA UPS delivers superior performance by automatically switching to battery power during power interruptions. Its Automatic Voltage Regulation (AVR) feature maintains a stable output voltage, providing consistent power to your devices even when input voltage fluctuates. This prevents voltage surges or dips from damaging your sensitive electronics and ensures smooth operation.

    The Digital X 1200VA Offline UPS comes with intuitive LED indicators that make it easy to monitor its status at any given time. The audible alarm system alerts you during critical conditions, such as battery low, overload, or when the UPS is running on battery power, ensuring that you are always aware of its current operating state.

    Designed with efficiency in mind, the energy-saving mode ensures minimal power consumption while delivering high performance. The cold start function allows the UPS to power up your devices directly from the battery when utility power is unavailable, offering flexibility during power outages.

    The Digital X 1200VA UPS is engineered with safety in mind, offering overload protection, short-circuit protection, and automatic battery recharge to extend the life of the UPS and ensure the safety of connected devices. Its compact design fits easily into tight spaces, while its durable build ensures long-term reliability.

    Whether you're powering home office equipment, a small server, or security systems, the Digital X 1200VA Offline UPS provides optimal protection and peace of mind.


    Buy Digital X 1200VA Offline UPS from Dear IT Solution

    In Bangladesh, you can buy the Digital X 1200VA Offline UPS from Dear IT Solution at the best price in Bangladesh. We provide the best quality product insured in Bangladesh, ensuring excellent performance and customer satisfaction. Order online or visit our store today to safeguard your electronics with reliable backup power

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