Yoneston Remote Control Helicopter with 2 Batteries, SYMA S39H RC Helicopter with Altitude Hold and High & Low Speed Mode for Adults Kids (Blue)
Yoneston Remote Control Helicopter with 2 Batteries, SYMA S39H RC Helicopter with Altitude Hold and High & Low Speed Mode for Adults Kids (Blue)
Yoneston Remote Control Helicopter with 2 Batteries, SYMA S39H RC Helicopter with Altitude Hold and High & Low Speed Mode for Adults Kids (Blue)
Yoneston Remote Control Helicopter with 2 Batteries, SYMA S39H RC Helicopter with Altitude Hold and High & Low Speed Mode for Adults Kids (Blue)
Yoneston Remote Control Helicopter with 2 Batteries, SYMA S39H RC Helicopter with Altitude Hold and High & Low Speed Mode for Adults Kids (Blue)

Yoneston Remote Control Helicopter with 2 Batteries, SYMA S39H RC Helicopter with Altitude Hold and High & Low Speed Mode for Adults Kids (Blue)

$32.98
$0.00
-$-32.98
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Vendor by: Syma
SKU: 23178-03-WM
The New Toy Syma S39H RC Helicopter with cool looking comes with stable 2.4GHz gyro system for precision control and Altitude Function to add more fun for playing. The metal frame has proven to withstand dozens of crashes. Kids like flying toys, however, most drones are complicated to operate and dangerous for children. Our new toy mini helicopter is perfect for any drone beginner and its super simple to fly indoor and outdoor. One Key can take off and landing, two speeds mode allow adult and child pay together or friend’s battle. Come on, Get one today! More bigger size 12.8*2.4*4.9 inch, more good playing.

Features:

【Altitude Function / Hover】Updated with Altitude Hold Function, this 2.4GHz RC helicopter can be locked at a certain height when your hands are off the controller. New function and more funny.

【Anti-Collision】Durable with metal frame and flexible blades, which provides to withstand dozens of crashes, makes this mini helicopter more tough, durable and safe.

【One Key Take Off/Landing】 Just press one key to start flight, this mini helicopter will take off and hover at a certain height. Super easy to control for kids, child and adults. Two li-po battery included give you double happy playing time.

【Two Speed Modes & LED Light】This helicopter hobby toy features 2 Speed Modes which make it suitable for pilots with different skill levels. This helicopter equipped with LED lights can enjoy the fun of flying at night.

【3.5 Channels&2.4Ghz Remote】Control the plane Up, Down, Left, Right, Forward and Backward built-in Gyro to hover in the air. 2.4Ghz Remote Control system which can prevent signal interference, supports multiple helicopters playing at the same time for more indoor games fun.

【More Funny Gift For Kids】The funny helicopter toy suitable for Birthday gift, Easter Gift, Children’s day gift, Christmas gift, and Superhero gifts or daily reward for your boys and girl kids.

Specifications:
  • Controlling distance: About 20 Meters
  • Helicopter Battery: 3.7V 2x150mah Lithium-Polymer Battery(Included)
  • Transmitter Battery: 4 x AA Alkaline Batteries (Not Included)
  • Charge time: 60 Minutes for Full Charge
  • Fly Time: About 6 Minutes
  • Product Dimension: 12.8 x 2.4 x 4.9inch/ 1.9lb
  • Package Dimension: 21.65 x 9 x 3.2 inch/2.3lb

    Package Includes:
  • 1 x S39H Helicopter
  • 1 x Controller
  • 1 x Tail Blade
  • 2 x 3.7V/300mAh Battery
  • 1 x USB Charging Cable
  • 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.