Menu
Your Cart

Prolink 650VA Offline UPS

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

Key Features

    • Model: Prolink 650VA
    • Capacity 650VA
    • Transfer time: 2-8ms
    • Backup time up to 20 minutes
    • Generator Compatibility
    Specification
    General Feature
    BrandProlink
    ModelProlink 650VA
    Capacity650VA
    Frequency50Hz ± 1Hz
    Output Features
    Backup Time20 Minutes
    Type of WaveSimulated Sine wave (Inverter)
    Transfer TimeSimulated Sine wave (Inverter)
    Technical Info
    Battery50Hz or 60Hz ± 5%
    Input Voltage140-300VAC
    Output Voltage220 ± 10%
    Warranty Information
    Warranty01 Year Warranty
    Description

    Prolink 650VA Offline UPS

     Prolink 650VA Offline UPS is an efficient and compact power backup solution designed to safeguard your electronic devices against unexpected power failures. With a 650VA/360W capacity, this UPS is ideal for powering home computers, small office setups, networking equipment, and other critical electronic devices. Whether you're working from home or need continuous protection for your devices, this UPS offers the reliability and security you need.

    This Prolink UPS features Automatic Voltage Regulation (AVR), which ensures your connected devices receive a stable and consistent output voltage even when the input fluctuates. The AVR helps to prevent damage from voltage surges, sags, or spikes, which can be detrimental to sensitive electronics, ensuring they remain safe during power irregularities.

    The Prolink 650VA Offline UPS provides a microprocessor-controlled design, making it highly efficient and responsive to power fluctuations. The UPS automatically switches to battery mode when there’s a power outage, delivering backup power to keep your equipment running until utility power is restored. Its LED indicators offer a clear display of the UPS status, allowing users to easily monitor power conditions.

    Overload protection and battery low alarms further enhance the safety of your equipment, ensuring you are informed of any issues that may arise. The Prolink 650VA UPS also features a cold start function, which allows it to power up your connected devices even when there's no incoming electricity.

    Designed with energy efficiency in mind, the Prolink 650VA Offline UPS reduces energy consumption while maintaining stable power output. Its compact and sleek design ensures it easily fits into any space without compromising on performance.

    The Prolink 650VA Offline UPS is an ideal solution for small office environments, home setups, or anywhere you need basic protection against power interruptions.


    Buy Prolink 650VA Offline UPS from Dear IT Solution

    In Bangladesh, you can purchase the Prolink 650VA Offline UPS at the best price from Dear IT Solution. We provide best quality products insured in Bangladesh to ensure optimal performance and peace of mind. Order online or visit our store to protect your electronic devices with a reliable power backup solution

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