Menu
Your Cart

Power Guard 650VA CS Offline UPS Plastic Body

Power Guard 650VA CS Offline UPS Plastic Body
Power Guard 650VA CS Offline UPS Plastic Body
  • Price: TK 3,200/-
  • Stock: In Stock
  • Model: 650VA CS
TK 3,200/-
Ex Tax: TK 3,200/-

Key Features

    • Model: 650VA CS
    • Output Voltage (V): 220/230 VAC +/-10%
    • Frequency (Hz - KHz): 50/60Hz +/-5%
    • Input Voltage (V): 145-280V
    • Load Capacity: 390W
    Specification
    General Feature
    BrandPower Guard
    Model650VA CS
    Capacity390W
    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
    Warranty1 year
    Description

    Power Guard 650VA CS Offline UPS Plastic Body

    Power Guard 650VA CS Offline UPS Plastic Body The Power Guard 650VA CS Offline UPS with a plastic body is a reliable and efficient backup power solution designed to protect your electronic devices during power outages, voltage fluctuations, and surges. Ideal for home or small office use, this UPS ensures your devices stay safe and operational, even in unstable power conditions.

    Equipped with a 650VA capacity, this UPS is perfect for powering computers, networking devices, routers, CCTV systems, and other sensitive equipment. It offers a quick switchover time during power failures, ensuring your data stays safe and your work remains uninterrupted. With its advanced microprocessor control, the Power Guard UPS provides precise and stable output for maximum efficiency.

    The lightweight and durable plastic body makes it easy to place the UPS anywhere—on or under your desk or next to your equipment. It features user-friendly indicators for power status, battery mode, and overload protection. This UPS is also designed with built-in overcharge and deep discharge protection, which helps to extend battery life and enhance the performance of the connected devices.

    It comes with an automatic voltage regulator (AVR) to stabilize the input voltage and protect your equipment from harmful surges. The compact design doesn't compromise functionality and is perfectly suited for users who need reliable backup in a small form factor.

    Whether you're protecting valuable data, maintaining internet connectivity during blackouts, or ensuring continuous surveillance from your CCTV system, the Power Guard 650VA CS Offline UPS delivers consistent performance and peace of mind.


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

    Get the Power Guard 650VA CS Offline UPS  at the best price in Bangladesh from Dear IT Solution. We offer the best quality product insured in Bangladesh. Shop online or visit our store for the latest UPS models with warranty and trusted after-sales service

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