Menu
Your Cart

Digital X 850VA Offline UPS

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

Key Features

    • Model: Digital X 850VA
    • Automatic Voltage Regulator
    • Capacity: 850VA
    • Load Capacity: 480W
    • Battery: 1 pcs, 12V, 9AH
    Specification
    General Feature
    BrandDigital X
    ModelDigital X 650VA
    Capacity480W
    Frequency50 - 60Hz
    Technical Info
    Battery1 pcs, 12V, 9AH
    Input Voltage85 - 135V
    Output Voltage100 - 220V
    Warranty Information
    Warranty01 Year
    Description

    Digital X 850VA Offline UPS

    Digital X 850VA Offline UPS The Digital X 850VA Offline UPS is a dependable power backup solution built to protect your essential electronic devices from power disruptions, voltage spikes, and electrical noise. With a capacity of 850VA/480W, this UPS is an excellent choice for desktop computers, small servers, routers, switches, CCTV systems, and other home or office electronics that require steady and secure power.

    Equipped with intelligent microprocessor-based technology, the Digital X 850VA UPS ensures fast and accurate switching during power interruptions. It provides instant backup, allowing you to save your work and safely shut down your systems during outages, reducing the risk of data loss and hardware damage. The Automatic Voltage Regulation (AVR) feature ensures that your devices receive consistent voltage, even when the input fluctuates.

    The Digital X 850VA Offline UPS comes with easy-to-read LED indicators that display the operational status at a glance. An audible alarm system also keeps you updated during critical events like low battery warnings and overload conditions, ensuring your systems remain protected at all times.

    Designed for convenience, this UPS features a compact and sleek design, making it easy to fit into tight spaces in homes, offices, or server rooms. The cold start function enables the UPS to power up connected devices directly from the battery in the absence of utility power, offering greater flexibility during emergencies.

    Safety is a priority with the Digital X 850VA UPS. It provides overload protection, short-circuit protection, and automatic battery recharge to enhance the lifespan of both the UPS and your connected devices. The energy-efficient design ensures minimal power consumption, contributing to lower electricity bills and a greener environment.

    Whether you are working remotely, running a small office, or protecting valuable electronics at home, the Digital X 850VA Offline UPS offers a perfect blend of power, reliability, and protection.


    Buy Digital X 850VA Offline UPS from Dear IT Solution

    In Bangladesh, you can buy the Digital X 850VA Offline UPS from Dear IT Solution at the best price in Bangladesh. We offer the best quality product insured in Bangladesh, ensuring reliability and customer satisfaction. Visit our shop or order online today to keep your devices powered and protected

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