Menu
Your Cart

Digital X 650VA Offline UPS

Digital X 650VA Offline UPS
Digital X 650VA Offline UPS
  • Price: TK 3,150/-
  • Stock: In Stock
  • Model: Digital X 650VA
TK 3,150/-
Ex Tax: TK 3,150/-

Key Features

    • Model: Digital X 650VA
    • Low voltage input
    • Capacity: 650VA
    • Load Capacity: 360W
    • Frequency: 50 - 60Hz
    Specification
    General Feature
    BrandDigital X
    ModelDigital X 650VA
    Capacity360W
    Frequency50 - 60Hz
    Technical Info
    Battery1 pcs, 12V, 7AH
    Input Voltage85 - 135V
    Output Voltage100 - 220V
    Warranty Information
    Warranty01 Year
    Description

    Digital X 650VA Offline UPS

    Digital X 650VA Offline UPS The Digital X 650VA Offline UPS is a reliable power backup solution designed to protect your electronic devices from sudden power failures, voltage fluctuations, and electrical surges. With a power capacity of 650VA/390W, this UPS is ideal for personal computers, small office networks, CCTV systems, routers, and other sensitive electronic equipment that require uninterrupted power and protection.

    Built with advanced microprocessor control technology, the Digital X 650VA UPS ensures quick and stable responses to power disturbances. When an outage occurs, it instantly switches to battery mode, giving you enough time to save important files and safely shut down your systems, preventing potential data loss and hardware damage. Its Automatic Voltage Regulation (AVR) stabilizes incoming voltage, keeping your equipment safe from harmful surges and sags.

    The Digital X 650VA Offline UPS features clear LED indicators to keep you informed about the status of your UPS, including normal operation, battery mode, and fault warnings. It also has an audible alarm system that alerts you during critical conditions like low battery or overload, ensuring that you can react promptly.

    Designed to be compact and lightweight, the Digital X 650VA fits conveniently in small spaces without taking up much room. It features cold start capability, allowing you to power up your devices directly from the battery when there’s no main power supply, offering extra flexibility during emergencies.

    This UPS also incorporates important safety features like overload protection, short circuit protection, and automatic battery recharging. Its energy-efficient design helps to minimize power consumption, making it an eco-friendly choice for homes and offices alike.

    Whether you’re working from home, running a small business, or safeguarding your personal devices, the Digital X 650VA Offline UPS provides the perfect balance of performance, protection, and affordability.


    Buy Digital X 650VA Offline UPS from Dear IT Solution

    In Bangladesh, you can purchase the Digital X 650VA Offline UPS from Dear IT Solution at the best price in Bangladesh. We ensure the best quality product insured in Bangladesh, providing you with reliable service and peace of mind. Visit our store or shop online today to secure your valuable electronics with Digital X UPS.

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