Menu
Your Cart

Power Guard 800VA CS Offline UPS (Plastic Body)

Power Guard 800VA CS Offline UPS (Plastic Body)
Power Guard 800VA CS Offline UPS (Plastic Body)
  • Price: TK 4,800/-
  • Stock: In Stock
  • Model: 800VA CS
TK 4,800/-
Ex Tax: TK 4,800/-

Key Features

    • Model: 800VA CS
    • Output Voltage (V): 220/230 VAC +/-10%
    • Frequency (Hz - KHz): 50/60Hz +/-5%
    • Input Voltage (V): 145-280V
    • Load Capacity: 480W
    Specification
    General Feature
    BrandPower Guard
    Model800VA CS
    Capacity480W
    Frequency50/60Hz +/-5%
    Display Features
    Display TypeLED Display
    Output Features
    Backup Time5-40 Minutes
    Type of WaveModified-Sinewave
    Transfer Time2-6 ms Typical
    Technical Info
    BatteryLead-Acid Miantenance-Free
    Input Voltage145-280V
    Output Voltage220/230 VAC +/-10%
    Others
    AlarmBeeping Alarm
    IndicationsAC Mode: Green lighting Battery Mode: Red lighting Over Load: Yellow lighting
    Warranty Information
    Warranty01 Year
    Description

    Power Guard 800VA CS Offline UPS (Plastic Body)

    Power Guard 800VA CS Offline UPS (Plastic Body)The Power Guard 800VA CS Offline UPS is a compact and reliable power backup solution designed to protect your electronic devices from unexpected power outages, voltage fluctuations, and surges. With an upgraded 800VA capacity, this offline UPS is ideal for homes, small offices, and personal workstations that require uninterrupted power and stable performance.

    Built with a durable plastic body, the Power Guard 800VA UPS is lightweight, easy to handle, and fits conveniently under or beside your desk. Despite its compact design, it offers robust protection and smooth power delivery for devices such as desktop computers, routers, modems, CCTV cameras, and other essential electronics.

    This UPS ensures automatic switchover during power cuts, keeping your work safe and uninterrupted. The built-in automatic voltage regulator (AVR) helps stabilize input voltage, protecting sensitive devices from damage caused by overvoltage or low voltage. It also features microprocessor control technology for reliable operation and quick response.

    Designed with user-friendly LED indicators, it clearly shows power status, battery mode, and overload warnings. The UPS also includes overload, overcharge, and deep discharge protection, ensuring longer battery life and enhanced safety for both the UPS and connected devices.

    Whether you're working from home, studying online, managing a small business, or securing your premises with surveillance equipment, the Power Guard 800VA CS Offline UPS offers the perfect balance of performance, protection, and affordability.


    Buy Power Guard 800VA CS Offline UPS from Dear IT Solution

    Get the Power Guard 800VA CS Offline UPS (Plastic Body) from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, we offer genuine power solutions with warranty and dependable after-sales service. Order online or visit our store today for peace of mind and uninterrupted 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};