Microscope Camera Magnifier

$49.99
$79.99
Save $30.00
people are viewing this right now
Clarity : 2K
Description
  • ๐Ÿ‘[Easy and Fun] - This wireless digital microscope makes it easy and fun to get a closer look at things in nature. And it's a very meaningful tool for parents, teachers, students, children, collectors and inquisitive folks who are interested in exploring the microscopic world. Great for observing plant trichomes, tiny living things, minerals, coins, stamps, jewelry, skin, printed circuit board and more.
  • ๐Ÿ‘[1080P HD & 8 Adjustable LED Lights] - 50X-1000X HD Magnification, built in 2 Megapixel camera cooperating with 1080P resolution, enables this trichome microscope to deliver incredible details of observations in full lighted view with 8 LED fill lights with three-level brightness.
  • ๐Ÿ‘[WiFi & USB Microscope, Easy to Use] - This wireless handheld digital microscope can not only connect to your iPhone, iPad, Android phones and tablets via wifi function but also connect to your computer for larger view via USB cable. It can be switched as needed, which is more convenient and smarter.
  • ๐Ÿ‘[Take Photos or Videos with One Click] - You can take photos or videos of what you are observing with the portable microscope through the APP with one click and save them to your phone. In addition, you can also directly adjust the magnification through the APP, which is very convenient.
  • ๐Ÿ‘[Connect to PC for Larger View] - DM1S wifi microscope is equipped with a USB port for connecting to Windows and MacOS computers. PC just to use the default software Photo Booth for MacBook/iMac and Windows Camera. Just connect to your laptop/computer and your field of view will be extended on the computer screen. You will get larger and higher-quality images and videos, facilitate data sharing and analysis.
  • ๐Ÿ‘[Portable & Rechargable] - The base of the iphone microscope is detachable and the pocket sized design makes it easy to carry around. In addition, it is rechargeable, it could last about 3 hours after fully charged. On a sunny day, fully charge the digital microscope, and then you can take your family or children to explore the magical and colorful microscopic world. Truly portable and independent.
  • ๐Ÿ‘[Stable & Flexible] - In order to allow you to feel the wonder of the microscopic world without any worries, we have equipped the usb microscope with a weighted base, which can make the mini microscope more stable. And thanks to the two-section bracket design, you can freely adjust the angle and height of the electronic microscope to provide you with the best viewing angle.
Shipping & Delivery

Shipping times to Contiguous U.S. vary depending on your location and selected shipping speed.

Destination Country

Standard Shipping (business days)

Two-Day Shipping (business days)

One-Day Shipping (business days)

Contiguous U.S.

4 to 5

Within 2

Within 1

Note: In many areas Saturday and Sunday delivery may be available. If weekend delivery is available to your destination, it will be specified on the product page and/or during checkout. Delivery estimates for FREE Prime Two-Day shipments to destinations that don’t have weekend delivery are based on two business day transit times, not including Saturday or Sunday.

Returns Policies

1. We offer a 30-day trial period, within 30 days you can return or exchange the product without any conditions, but only in the country/region of purchase.

 

2. If you would like to apply for a return and refund, please contact us within seven calendar days of receiving your product(s).

Contact email service@7upawtech.com customer support to apply for a return and refund.

To proccess the refund promptly, please be sure to send return notification to 7UPAWTECH with the following information:
  • Amazon Order Number.

  • Return Product Name & Quantity.

  • Return Reason.

  • Images or Videos of Products and Intact Packaging.

We will process your return and refund application within two or five working days after receiving your email.

  

3. Telephone contact +86 18027299651 for emergency order issues. (Only available from Monday to Friday, 9 AM to 6 PM, GMT8, please check before dialing.)

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.