Updated Version 9 Heat Zones LED Heated Hunting Vest Men & Women (With Battery Pack)

people are viewing this right now
$79.90
$156.66
Save 49%
1262 sold
Size : XS
Color : Snow Camo
Quantity
Description

STAY OUT LONGER & BOOST YOUR ODDS THIS HUNTING SEASON!

  • Heats up in less than 1 minute
  • 9 heating zones to heat up the most sensitive areas - neck, back, and front
  • Up to 8h working time
  • Prevents sweating and dehydration due to wearing too many layers of clothing
  • Waterproof and windproof 
  • Unisex

Precision Heat Distribution: 9 heating zones strategically placed to warm your neck, back, and core - the most vital areas for hunters.

Adaptive Heat Control: 3 heating modes (low, medium, and high) to adapt to changing hunting conditions.

Long-Lasting Heat: With our 20,000mAh battery, enjoy up to 8 hours on low, 6 hours on medium, and 5 hours on high, ensuring you stay warm throughout your hunting trip.

Weatherproof Performance: Crafted from windproof and waterproof lightweight polyester, enabling you to hunt comfortably in all weather conditions.

 Secure Your Essentials: Equipped with 3 zippered pockets including 2 external and I internal - for stashing your hunting gear and valuables, keeping them easily accessible while in the field.

HOW TO USE?

  • Step 1: Plug in the battery. The vest has a built-in USB port to connect a power bank.
  • Step 2: Turn it on. Long press the power switch for 3 seconds to turn on the heat.
  • Step 3: Select the heating mode: red light (113°F / 45°C), white light(95°F / 35°C), blue light (77°F / 25°C).

STAY WARM WHILE WAITING FOR HOURS IN COLD WEATHER

The main issue with staying warm when hunting is the sitting or standing still aspect of the activity.You will see more deer if you are warm enough not to fidget.With our GoHuntVestTM you'll never freeze again, it warms up in seconds, so you can focus on what you love: hunting!

NO MORE BULKY LAYERS

Many hunters carry layers and layers of clothes when they hunt.The problem is that there is a limit to how many clothes you can wear and still shoot accurately.Moreover, wearing too many layers will lead to sweating, making it easier for the deer to smell you.

Rather than using electric wires, conductive threading is a flexible e-textile that works with the wearer, making it a more comfortable option than the feel of wiring throughout your apparel. Conductive thread heating is an extremely lightweight yet durable heating option for wearable technology, offering high resistance, strength, and flexibility. What makes conductive thread safer than other heating options is the ability to handle high temperatures. 

Size Chart

Package includes:

1* Heated Hunting Vest

1* 7.4 Volts, 20000 mAh Li-Polymer Battery Pack (Charger Bank Size: 135 * 77 * 23 mm)

1* Exquisite packaging

If you're not completely satisfied, please contact our friendly customer service for assistance!

Our Guarantee:

1, Tracking number for every order, click here to track your parcel.

2, 24/7 assistance: hezizi0215@gmail.com

3, 15 days Return & Exchange guarantee.

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.

At HEATENERG, we strive to make apparel you can depend on. Our goal is to provide timeless articles of heated outerwear with attention to quality, safety, and affordability. We work passionately to provide a catalogue of jackets, vests, fleece, and sweatshirts - all powered by UL-Certified rechargeable batteries. We want you to be fully satisfied with any item you purchase from HEATENERG. We offer a 30-day money back guarantee alongside a 3-year warranty covering any heating elements of your purchase.

We live by our mission and aim to ensure warmth and comfortability when any of our products are in use. We want to open up new opportunities for you to enjoy the outdoors! The cold weather shouldn’t prevent anyone from spending time doing their favorite outdoor activities, whether it is hunting, tailgating, or simply walking your dog. We would love for you to share your experience with us; we deeply appreciate it and it helps us know we are succeeding in our mission!

All products

View more