💥Mini Laser Engraver

148 sold
$20.80
$60.00
-65%
Color:  BASIC VERSION
Hot Sales:  BUY 1
Quantity

Description

  • All products are shipped from USA!
  • Ship Within 48 Hours After Payment!
  • Worldwide Express Shipping Available!
  • SSL Certificates For 100% Security!
  •  Shipping Worldwide! 
  • ✉️ 24/7 Customer Support: info@modishpenny.com

The difference between basic version and professional version,
The professional version just adds a cylindrical engraved roller accessory

【Enhanced Auto Focus & Lift】C1 laser engraver now features improved auto focus, simplifying your engraving. A single touch delivers precise focus. Additionally, prior to engraving, the device projects an image preview, boosting efficiency and precision. Its foldable design removes installation hassles, ensuring remarkable convenience. This portable, lightweight engraver offers location and time flexibility, even running on a power bank.

【Faster & Higher Accuracy Engraving】Experience faster and more accurate engraving with the C1 laser engraving machine. Its 5W laser power and ultra-long, 0.05mm infrared laser guarantee swift and precise results. The impressive maximum engraving speed of 600mm/s ensures efficient completion of your projects, creating lifelike engravings. Please note that for metal engraving, the C1 is only work on COATED METAL.

【Bottom Hollow and Rotatable Design】C1 laser cutter offers multiple carving modes, thanks to its bottom hollow and rotatable design. The movable board can be placed on either the flat or convex side, allowing you to customize your carving and cutting according to your needs. Moreover, the unique rotatable design permits engraving at any bevel within a 180° range. You can also directly place the C1 on top of large objects for accurate marking, breaking free from height and area limitations.

【Easy Connection】With Bluetooth connectivity, engraving your preferred images is a breeze using the app. The C1 mini laser engraver also supports connection to both Mac and Windows systems via a USB-C cable.

【Safety Protection & Quality Assurance】 C1 laser cutter and engraver machine prioritize safety with motion protection and overheat monitoring features, ensuring the well-being of users and equipment. Should you have any questions, please feel free to contact us, and we will do our best to provide you with a satisfying answer.

Package:

1*Mini Laser Engraver

1*Product Manual

OUR GUARANTEE

📦 Insured Worldwide Shipping: Each order includes real-time tracking details and insurance coverage in the unlikely event that a package gets lost or stolen in transit.

💰 Money Back Guarantee: If your items arrive damaged or becomes defective within 30 days of normal usage, we will gladly issue out a replacement or refund.

🔒 Safe & Secure Checkouts: We use state-of-the-art SSL Secure encryption to keep your personal and financial information 100% protected.

SHIPPING

United States: 7 to 20 business days( Ship from California)
Canada: 7 to 20 business days( Ship from Ottawa)
United Kingdom:7 to 20 business days( Ship from London)
Europe: 7 to 20 business days( Ship from United Kingdom)
Australia: 7 to 20 business days( Ship from  Canberra)
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.