Digital Coffee Scale with Timer LED Screen

MXN$45.90
Color : Black
Load Bearing : 3KG
Quantity
Description

• High Precision Measures :The scale measures weight with an accuracy of 0.1g, ensuring precise measurements for your coffee or other ingredients.
• LED Screen:The LED screen displays the weight and timer, making it easy to read and use.
• USB Charging :The scale can be charged via USB, making it convenient to use and eliminating the need for batteries.
• Max Weight of 3kg :The scale can handle up to 3kg of weight, making it suitable for measuring larger ingredients like beans or flour.
• High Precision Measures :The scale measures weight with an accuracy of 0.1g, ensuring precise measurements for your coffee and other ingredients.
• LED Screen:The LED screen displays the weight and timer, making it easy to read and use.
• USB Charging :The scale can be charged via USB, making it convenient to use and eliminating the need for batteries.
• Multiple Units :The scale measures weight in oz/ml/g, allowing you to use the unit that best suits your needs.
• High Precision Measures :The scale measures weight with an accuracy of 0.1g, ensuring precise measurements for your coffee or other ingredients.
• LED Screen:The LED screen makes it easy to read the weight and timer, even in low light conditions.
• USB Charging :The scale can be charged via USB, making it convenient to use and eliminating the need for batteries.
• Multiple Unit Measures :The scale measures weight in oz/ml/g, allowing you to choose the unit that works best for your needs.

How to use it ?


Select units
1.Touch Power starting up.
2.At power on , press the key continuously to convert the unitsbetween g(grams),lb(pounds), oz(ounces).
Ordinary weighing
3.When the display shows "0",gently put the food on the scale surface.
The display shows the weight value items.
Tare weighing function
4.When the display shows "0",gently put the Container on the scale surface.
5.press button the weight of the container is cleared. Screen shows "0"
6.Put food into the container, the display shows the weight of food.
Time function
7.Touch the timer button to start siming in seconds.
8.When you need to pause, you can touch the timer key and the timer will pause. If you need continuous timing, touch the key again. The maximum time is 19 minutes 59 seconds.
9.Touch and hold the timer key for 3 seconds to reset the timer to zero.
Note:After tare Weighing,lf you take away food and containers, the display will show "-"and the weight of the container Said negative weight.
Automatic timing mode
10.When the weight goes to zero, double click the 黑 to automatic mode and the colon flashes. Put on the coffee equipment, and the weight will be automatically cleared 3 seconds after the display.At this time, pour coffee liquid and start brewing coffee. Automatic timing also started. (Note: Be careful not to pour too much, as the system will detect a starting weight of 0.5-5g before the coffee is brewed .Or you can add less than five grams of liquid coffee first.)
11.After the brewing process is completed, the weight and time synchronously blink 5 times for the customer to record data, and then automatically exit and clear zero.
12.In automatic mode, double-click the on key to exit automatic mode.*Charging mode shows“CHG” as charging state; Display“FUL”as fully charged.

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.