MJAA™-Foldable Wireless Bluetooth Keyboard For Phone

KSh6,498.00
Color:  Black
Quantity
people are viewing this right now
33 sold
Kenya Nairobi, 2-Day Delivery
Guaranteed Safe Checkout and Fast Refunds
7 Days Free Return and Change
Customer Service Whatsapp: +254114968848--🔥Contact customer service to get a discounted price🔥 M-pesa

Description

More than just technology:

Take your possibilities to a new level! 🚀🌱

🔥 This keyboard turns your tablet and smartphone into a MacBook🤩
🌟 Easy to connect:


Compatible with all your smartphones and tablets - connect instantly via Bluetooth. Up to 48 hours of battery life and up to 560 hours of standby time! ⚡


🏖True productivity is everywhere:

Whether it's the beach, the cafe or a trip to the clouds - say goodbye to the compromise between mobility and power! 💼✈

🌟 Win more precious time for your life:

Discover the freedom of our products that simplify your life and keep you mobile! Get this change now and design your life the way you want it 🚀🤯


🚀 Tiny miracles, huge possibilities:

Just fold them up and put them away - there's room everywhere. No more stress from bulky accessories! 👜📦
💡No more obstacles:
Forget about tedious typing on a small screen. Our keyboards allow you to type smoothly and accurately anywhere - whether it's work or a creative blast. 📱✍

How keyboards are linked

The keyboard pairs via Bluetooth with a variety of devices, including smartphones, tablets, and laptops. Connections are simple and uncomplicated.

The folding bluetooth keyboard is ultra-portable and wireless, with a touchpad and high-capacity lithium battery.
It offers high-quality typing anywhere with Bluetooth 5.1 and a laptop-style key layout, plus it's compatible with three Bluetooth devices.

Product Description


PORTABLE AND CONVENIENT DESIGN
The Bluetooth Portable Keyboard combines a portable and foldable design to facilitate comfortable typing thanks to its large touchpad,
Bluetooth 5.1 technology and faux leather back with a comfortable grip.



HIGH-QUALITY TYPING EXPERIENCE WHEREVER YOU ARE
The bluetooth portable keyboard offers a high-quality typing experience wherever you are,
thanks to Bluetooth 5.1 technology and a laptop-style key layout.
Plus, its foldable design makes it ultra-portable.



COMPATIBLE WITH MULTIPLE SYSTEMS
The bluetooth portable keyboard is compatible with multiple systems, including Windows, Android, iOS and Mac (lock-free).
This makes it an ideal choice for those looking for a portable keyboard for everyday use, no matter what device they are using.


ECO-FRIENDLY AND ENVIRONMENTALLY FRIENDLY

The bluetooth portable keyboard is environmentally friendly thanks to its high-capacity lithium battery and compact,
foldable design for easy transportation.




TECHNICAL SPECIFICATIONS
Materials: ABS
Keyboard size: 346.86 X 106.09 X 8.8 mm (unfolded),
187 X 106.09 X 17.8 mm (folded)
Touchpad dimensions: 92.1 X 67.46 mm
Weight: 227 g
Language version: English
Interface type: Bluetooth/USB
Transmission: Bluetooth 5.1
Chipset: Broadcom US bluetooth 5.1
Number of connection channels: 3 channels
Operating voltage: 3,7 V
Touchpad current: <10 mA
Standby current intensity: <1 mA
Keyboard current intensity: <4 mA
Sleep current intensity: 17 uA
Sleep time: 10 minutes
Operating range: 10 m
Lithium battery capacity: 210 mAh

 charging port: typeC
Wake-up method: press any key
Application: Windows/IOS/Android/Mac

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.