GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
1/11
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
1/11

GPS Smart Watch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof

$69.99
$69.99
Save $0.00
ColorBlack
Please select a color
Quantity
Over $49.99 Free Shipping
30-day Zero-risk Return
100% Customer Satisfaction
Secure Payments
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.
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof

Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof

Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof
Findtime GPS Smartwatch with 24/7 Heart Rate Monitor Blood Oxygen IP68 Waterproof

 

Why choose this Findtime smart watch for men and women?

 

【HD Touch Screen & Personalized Dials】

1.52" HD large touch screen equipped with 240*283 pixel resolution can provide you with a clearer visual experience. This watch has several built-in new dials, including a variety of dynamic dials. In addition,the dial market has more personalized dials for you to choose from. Not enough? Then turn the photos you took and your favorite beautiful pictures into dials, put the world in your dials, giving you a new experience every time you wake up the screen.

Health Monitoring at Any Time

The Findtime smart watch can be measure on your watch, and sync it to the mobile phone APP and pay attention to the physical state at any time. This smart watch for blood oxygen measurement and 24/7 real-time heart rate monitor that record your every health condition with one button operation will protect your physical health all day long. The data is just used for reference actually. (This fitness tracker is not a medical device, the measurement data and results are for reference only, not for diagnosis and treatment basis.)

【Sleep Tracking】

How about your sleep condition? This health smart watch with sleep tracker make you refreshed and meet new challenges. It can monitor the deep sleep, light sleep and wake up time through check the sleep trend from the APP. Help you improve your sleep habits and get better sleep.

【Track Daily Activity & 18 Sports Modes】

The fitness watch supports 18 professional sports modes such as high-intensity interval training such as running, cycling, basketball, etc. Accurately monitor and analyze key exercise data such as heart rate, pace, and calorie consumption to help you improve your workout results.

IP68 Waterproof Smart Watch

Suitable for daily use with the IP68 waterproof smart watch, not for swimming or soaking in water. It resists rain and a small amount of splashing from washing your hands and face.

【Message Reminder】

Connect your life from your wrist. Pair bluetooth watch and your mobile phone via Zeroner app to receive calls, SMS and SNS messages (Facebook, Wechat, Whatsapp, Skype, Line, Instagram, Twitter, ect.). This smart watch will be vibration remind let you no longer miss any important affairs. You can also hang up incoming phone calls straight from your wrist. When the mobile phone calls or receives a message notification,even if the mobile phone is in the bag or busy without paying attention. When the phone rings, the watch will vibrate to remind. Let you know important notices in time.

【Magnetic Charging & Long Battery Life】

Low battery anxiety?Let it go away! Findtime fitness smartwatch equipped a convenient magnetic charging USB cable, 580mAh lithium polymer battery. It can ensure 5 days of normal usage and 7 days standby without frequent charging. Let you wear it without worries. Get rid of battery anxiety to accompany you around.

Nice Gift Choice

Watches are the ideal gifts with luxury box for families and friends, such as Birthday, Christmas, Valentine day, New Year, Father’s Day, Mather’s Day...

Smartwatch for Android and IOS Phones

Findtime fitness watch for men and women is compatible with smart phones that use Android 5.0 & iOS 10.0 and above, not for PC or tablet, only for mobile phones with Bluetooth 5.0 and above.

 

APP:  Zeroner

 

Function:

- Exercise Record (step counter, distance, calorie calculation)

- GPS Function

- Compass

- Real-time Heart Rate Monitoring

- Blood Oxygen Monitoring

- Sleep Monitoring

- Stress Measurement

- Alarm Clock

- Camera Control

- Music Control

- Incoming Call

- Sedentary Reminder

- Message Reminder

- Flashlight

- Stopwatch

- Timer

 

Specification:

- Case Size 44MM(173")

- Case Thickness 9.5MM(0.37")

- Strap Length 247MM(9.72")

 

What's in the box?

1 * Health Smart Watch

1 * Magnetic Charging USB Cable

1 * Luxury Watch Box

1 * English Instruction

 

Notes:

 

  1. Please upgrade to the latest software version for a better experience when there is an update prompt on the APP.
  2. The APP language automatically switches languages according to the system.
  3. Smart watch data can't use for medical purposes. The monitoring data is for reference only. If you need medical help, please contact a professional doctor.
  4. For daily wear, wear the watch about one finger distance from the wrist bone, and adjust the tightness of the strap to a comfortable position.