Menu
Your Cart

Kieslect KS Bluetooth Calling Smart Watch

Kieslect KS Bluetooth Calling Smart Watch
Kieslect KS Bluetooth Calling Smart Watch
  • Price: TK 5,400/-
  • Stock: In Stock
  • Model: KS
TK 5,400/-
Ex Tax: TK 5,400/-

Key Features

    • Model: KS
    • 1.78-inch Ultra AMOLED Display
    • Bluetooth Calling Support
    • 100 Sports Modes, AI Voice Assistant
    • Bangla Front Support
    Specification
    General Feature
    BrandKieslect
    ModelKS
    Display Features
    Display1.78" Ultra AMOLED Display Resolution: 368x448 Pixels Brightness: Up to 1000 nit Always-on Display
    Technical Info
    Battery330mAh
    ConnectivityBluetooth 5.2
    Others
    Special FeaturesFitness Tracker: Sleep Quality
    Software
    Operating SystemIOS 9.0+ Android 5.0
    Physical Attributes
    ColorOrange / Yellow
    Dimensions44.2x35.9x11.8 mm
    Weight44.5g
    Warranty Information
    Warranty01 Year
    Description

    Kieslect KS Bluetooth Calling Smart Watch

    The Kieslect KS Bluetooth Calling Smart Watch is an innovative and stylish wearable designed to offer seamless connectivity and a range of smart features. With its advanced Bluetooth calling functionality, this smartwatch enables you to make and receive calls directly from your wrist, ensuring you stay connected at all times without needing to reach for your phone.

    The Kieslect KS Smart Watch boasts a large 1.69-inch HD touch display, providing a crystal-clear viewing experience for notifications, messages, and fitness data. The touchscreen is intuitive and responsive, making it easy to navigate through various functions, including call management, message alerts, and fitness tracking.

    Equipped with heart rate monitoring, sleep tracking, and step counting, the Kieslect KS is an excellent choice for those looking to track their health and wellness. Whether you’re running, walking, or at rest, the smartwatch provides real-time insights into your activity levels and overall health, helping you stay motivated to reach your fitness goals.

    In addition to its fitness features, the Kieslect KS also provides a range of practical functions to enhance your productivity. Stay updated on incoming calls, messages, and app notifications with ease. The watch is compatible with a wide range of apps, allowing you to manage your daily tasks efficiently right from your wrist.

    With its sleek and modern design, the Kieslect KS Bluetooth Calling Smart Watch is perfect for both casual and formal occasions. The comfortable strap ensures a secure and snug fit, while the durable build makes it ideal for everyday wear. Plus, the smartwatch is water-resistant, so you can wear it while washing your hands or exercising without worry.

    The Kieslect KS features an energy-efficient battery that ensures long-lasting use throughout the day, so you can enjoy all its features without constantly worrying about charging.

    Buying Suggestions from Dear IT Solution

    For customers in Bangladesh, the Kieslect KS Bluetooth Calling Smart Watch is available at Dear IT Solution, your trusted provider of high-quality tech products.

    At Dear IT Solution, we offer the Kieslect KS Smart Watch at a competitive price, ensuring the best value for your investment. Our easy-to-use online platform allows you to quickly find the perfect smartwatch and have it delivered right to your doorstep.

    Should you have any questions or need further assistance, our expert team is always ready to help. Choose Dear IT Solution for a reliable shopping experience and get your Kieslect KS Bluetooth Calling Smart Watch 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};