Menu
Your Cart

Kisonli LP-2S Bluetooth Speaker

Kisonli LP-2S Bluetooth Speaker
Kisonli LP-2S Bluetooth Speaker
-11 %
Kisonli LP-2S Bluetooth Speaker
Kisonli LP-2S Bluetooth Speaker
Kisonli LP-2S Bluetooth Speaker
  • Price: TK 1,850/-
  • special price: TK 1,650/-
  • Stock: In Stock
  • Model: LP-2S
  • Dimensions: 165.00mm x 72.00mm x 65.00mm
TK 1,650/-
TK 1,850/-
Ex Tax: TK 1,650/-

Key Features

    • Brand Name: Kisonli
    • Model Number: LP-2S
    • Use: Clock, Voice Alarm clock, Mobile Phone, Portable Audio Player, Stage
    • Hands-Free Voice Call Built-In Mic
    • Color: Black
Specification
General Feature
BrandKisonli
Model LP-2S
Technical Info
Input Voltage DC SV / 1-2A
Charging timeAbout 2-3 hours
Power
Battery Capacity1200mAh
Stand BY Time About 4 hours
Physical Attributes
Color Black
Dimensions165x72x65mm
Description

Kisonli LP-2S Bluetooth Speaker With Clock – Full Description

The Kisonli LP-2S Bluetooth Speaker is a multifunctional audio device designed to deliver high-quality sound while offering practical features. This compact and stylish speaker is ideal for various uses, including as a clock, voice alarm, and a portable audio solution for mobile phones and other devices. Here’s what sets the Kisonli LP-2S apart:

Key Features
Brand Name: Kisonli
Model Number: LP-2S
Versatile Uses:
Functions as a digital clock with an integrated alarm feature, ensuring you wake up to your favorite sounds.
Works as a high-quality Bluetooth speaker compatible with mobile phones, offering easy pairing and enhanced audio clarity for your calls and music.
Portable audio player suitable for home or stage environments, delivering impressive sound output for any occasion.
Hands-Free Voice Calling:
Equipped with a built-in microphone that allows for hands-free calling, making it convenient for conference calls or casual conversations without needing to pick up your device.
Color: Black
The sleek black finish complements any setting, adding a modern, professional look to your space.
Additional Details
The Kisonli LP-2S is crafted with ease of use in mind. Its Bluetooth compatibility means you can connect it with various devices seamlessly, while its compact design makes it portable and easy to carry. Whether you’re using it at home, in an office, or on stage, this speaker delivers both style and functionality.

With Kisonli's commitment to quality, this speaker is designed to meet the needs of both tech enthusiasts and casual users, making it a versatile and reliable choice for anyone in search of a multifunctional Bluetooth speaker.

Buying suggetion
Explore Kisonli Speakers at Dear IT Solution and enjoy the best in audio technology at unbeatable prices.

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