Amazfit T-Rex Ultra Smart Watch for Men, 20-Day Battery Life, 30m Freediving, Dual-Band GPS & Offline Map Support, Mud-Resistant & 100m Water-Resistant, Military-Grade Outdoor GPS Sports Watch, Black

$38.22
$399.99
-90%
Color:  Sahara
Quantity

Description

Brand Amazfit
Screen Size 1.3 Inches
Special Feature Mud-resistant, Altitude Assistant, 30m Freediving Support, Compass, Ultra-low Temperature Operation
Connectivity Technology GPS
Map Type Satellite
Sport Fitness
Included Components User Manual, Magnetic Charging Cable, Smart Watch
Battery Life 480 Hours
Operating System Zepp OS
Item Dimensions LxWxH 1.86 x 1.86 x 0.53 inches

  • Stainless Steel & Mud-resistant Design: Constructed with super-strong 316L stainless steel and a patented mud-resistant bridge and buttons, Amazfit T-Rex Ultra is built to withstand any kind of action. The smartwatch's HD AMOLED display can reach a peak brightness of 1,000 nits for ultra-clear visibility in any environment. Adjustable lugs ensure maximum comfort for the entirety of your epic adventures, and you can enjoy ultimate control with a responsive touchscreen and four convenient buttons.
  • 30m Freediving Support: As the ultimate multi-environment outdoor smartwatch, the Amazfit T-Rex Ultra supports indoor and outdoor freediving to a depth of up to 30 meters. It can also resist the equivalent of up to 100 meters’ water pressure, making it perfect for all your swimming, surfing and kitesurfing activities.
  • Dual-band GPS & Route Navigation: The smartwatch utilizes both L1 and L5 signals for incredibly precise dual-band GPS positioning, and supports six satellite systems for greater global coverage. Import a route file to the watch along with a corresponding Offline Map, and navigate with professional-level environmental understanding.
  • Mighty 20-day Battery Life: Experience energy beyond extinction, with battery life that can last a super-long 20 days. The sports watch also introduces a new Endurance GPS battery mode for those who love to lose themselves in nature for long periods of time, plus a new Automatic GPS battery mode which intelligently adjusts GPS settings based on signal strength, to help conserve power.
  • -30℃ Ultra-low Temperature Operation: Built for the brave, the watch is tough enough to be operated in extreme temperatures as low as -30℃, thanks to its specially designed circuitry system and battery. So not only can the watch body physically resist the cold, but you can keep using the watch's functions as the conditions get more intense.
  • Military-grade Toughness: Resistant to extreme 70℃ heat and -40℃ cold - as well as humidity, shock and more - this outdoor smartwatch has proved its toughness by passing 15 military-grade tests. Understand your surroundings better with the built-in compass and barometer, along with environmental reminders and a host of other useful features.
  • Sync To Your Favorite Health Apps: Share completed routes and activity data from your legendary adventures with fitness communities like Strava, adidas Running, Komoot and Relive, along with smartphone apps like Apple Health and Google Fit.


Amazfit T-Rex Ultra-Ultimate Outdoor GPS Smartwatch

24/7 Health Monitoring

Monitor your heart rate, blood-oxygen saturation and stress level, 24/7. The watch can also provide the crucial in-depth sleep monitoring that adventurers need to recover optimally, as well as real-time alerts for abnormal health metric readings, and even promts to check your

SpO₂ level at higher altitudes.

<
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.