Menu
Your Cart

SANTAK Robust R650 650VA Offline UPS

SANTAK Robust R650 650VA Offline UPS
SANTAK Robust R650 650VA Offline UPS
  • Price: TK 4,300/-
  • Stock: In Stock
  • Model: Robust R650
TK 4,300/-
Ex Tax: TK 4,300/-

Key Features

    • Model: Robust R650
    • Power Rating: 650 VA/360 W
    • Input Voltage Range: 140-300 VAC
    • Output Voltage: 230 VAC
    • Backup time: 15 minutes
    Specification
    General Feature
    BrandSANTAK
    ModelRobust R650
    Capacity650VA/360W
    Frequency50 Hz +/-1 Hz
    Output Features
    Backup Time15 minutes
    Type of WaveAC mode:pure sine wave; battery mode:simulated sine wave
    Transfer TimeTypical 4-8ms
    Technical Info
    Battery2V/7Ah*1 VRLA Recharge time: 2-4hours to 90% capacity
    Input Voltage140-300V
    Output Voltage140-300 V
    Warranty Information
    Warranty01 Year
    Description

    SANTAK Robust R650 650VA Offline UPS

    SANTAK Robust R650 650VA Offline UPS The SANTAK Robust R650 650VA Offline UPS is a dependable and compact power backup device designed to protect your essential electronic equipment from unexpected power outages, voltage fluctuations, and electrical surges. With its 650VA/360W power capacity, it is ideal for safeguarding desktop PCs, routers, POS machines, CCTV systems, and other sensitive devices in both home and office environments.

    The Robust R650 features advanced microprocessor control technology that ensures high reliability and efficient performance. It provides instant automatic backup power when the main supply fails, giving users critical time to save important work and safely shut down their systems. Its Automatic Voltage Regulation (AVR) function stabilizes input voltage, protecting your devices from harmful low or high voltage levels.

    Designed for user convenience, the SANTAK Robust R650 is equipped with LED indicators that display real-time operational status, including battery mode, low battery, and overload warnings. The UPS also includes audible alarms to alert users of important changes or faults, ensuring you stay informed and prepared during any power event.

    The compact and lightweight design of the R650 allows it to fit seamlessly into any workspace without taking up much room. Despite its small footprint, it offers excellent build quality and durability. Its cold start capability ensures the UPS can be powered on without an AC input, providing an extra layer of reliability during emergencies.

    Key features like overload protection, short-circuit protection, and automatic battery recharge make the SANTAK Robust R650 a safe and smart investment for your critical devices. It also offers energy-efficient performance, helping to lower your overall electricity consumption.

    Whether you are looking to protect a single computer setup, network equipment, or home electronics, the SANTAK Robust R650 650VA Offline UPS provides reliable protection and peace of mind at an affordable price.


    Buy SANTAK Robust R650 650VA Offline UPS from Dear IT Solution

    In Bangladesh, you can buy the SANTAK Robust R650 650VA Offline UPS from Dear IT Solution at the best price in Bangladesh. We ensure the best quality product insured in Bangladesh with reliable after-sales service and support. Visit our store or order online to secure your devices with one of the most trusted UPS brands today

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