Menu
Your Cart

Prolink 1500VA Offline UPS

Prolink 1500VA Offline UPS
Prolink 1500VA Offline UPS
  • Price: TK 10,200/-
  • Stock: In Stock
  • Model: Prolink 1500VA
  • MPN: PRO1501SFCU-4U
TK 10,200/-
Ex Tax: TK 10,200/-

Key Features

    • Model: 1500VA
    • Capacity: 1500VA
    • Input Voltage - 230VAC
    • Frequency: 50 or 60Hz ± 1Hz
    • Voltage Regulation: ± 10%
    Specification
    General Feature
    BrandProlink
    ModelProlink 1500VA
    Capacity700W
    Frequency50 or 60Hz ± 1Hz
    Output Features
    Type of WavePure Sine wave
    Technical Info
    BatteryNumber of Battery: 12 V/10 Ah x 2 Recharge Time (typical): 2-4 hours recover to 90% capacity
    Input Voltage230VAC
    Output Voltage± 10%
    Others
    AlarmLED Display: AC Mode – Green Lighting, Battery Mode – Yellow Flashing every 10 seconds, Overload – Red Flashing every second, Fault – Red Lighting
    Physical Attributes
    ColorBlack
    Dimensions320 x 130 x 182 (D x W x H)
    Weight10.4 Kg
    Warranty Information
    Warranty01 Year Warranty
    Description

    Prolink 1500VA Offline UPS

     Prolink 1500VA Offline UPS is a high-capacity backup power solution designed to deliver stable and reliable power for your critical devices. With a power rating of 1500VA/900W, this UPS is perfect for protecting desktop computers, servers, networking devices, and other sensitive electronics from sudden power failures, voltage fluctuations, and electrical surges.

    Built with Automatic Voltage Regulation (AVR) technology, the Prolink 1500VA Offline UPS automatically stabilizes the output voltage to prevent damage from high and low voltage fluctuations. It ensures that your valuable equipment runs smoothly even during unstable power conditions, offering peace of mind for both home users and businesses.

    Featuring microprocessor-controlled operation, this UPS delivers fast response to power anomalies, instantly switching to battery mode during a blackout. The Prolink 1500VA provides ample backup time, allowing you to save your work and shut down devices properly, thus avoiding data loss and hardware damage.

    In addition, the UPS is equipped with overload protection, short-circuit protection, and battery discharge protection, ensuring your devices and the UPS itself remain safe under all operating conditions. LED status indicators and an audible alarm system keep you informed about the UPS status, making monitoring simple and effective.

    The Prolink 1500VA Offline UPS also offers a cold start function, allowing it to be powered on directly from battery mode without a utility power source — a highly useful feature during emergencies. Its compact design makes it easy to place in any office or home environment without taking up much space.

    This UPS is designed to deliver high energy efficiency, reducing power consumption and operating costs while ensuring your equipment stays protected.


    Buy Prolink 1500VA Offline UPS from Dear IT Solution

    Get the Prolink 1500VA Offline UPS at the best price in Bangladesh from Dear IT Solution. We provide best quality products insured in Bangladesh, ensuring you receive genuine and durable backup solutions. Order online or visit our store today to secure your valuable electronics

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