Newest ST-906 GPS Car Tracker GPRS SMS Tracking Device GMS GPS Vehicle Motorcycle Scooter Locator Remote Control With software

$21.50
$42.99
-50%
color:  With Box and Line
Ships From:  CHINA
Quantity

Description

Before Order Notice

(3G Version cannot change IMEI)
If you are in Turkey or Pakistan, please send SMS command to change local vaild IMEI number.
E.g:
if you want change IMEI to:123456789078532
please send SMS command: IMEI#123456789078532#
please change IMEI number within 5 days when you received product.

If you are in Chile or Colombia,after you receive the product, you should register IMEI in your country as soon as possible, otherwise the device is not allowed to be used in your country.

Item Function

· Real time tracking by SMS/GPRS;
· Recover original password;
· Real time voice monitoring;
· Main Power off alarm;
· ACC to detect ignition;
· Over speed alarm;
· ACC anti-theft alarm ;
· SOS alarm ;
· Built-in backup battery to realize power failure alarm;
· Connect external relay to realize controlling oil and circuit of the vehicle(optional)

Relay Remote Contorl for Cut Oil SMS command:

When you find the car was stolen, you can send sms command to cut the oil and electricity.

Microphone for voice monitoring

You can set 3 controller phone number, and call the GPS Tracker from the controller number, GPS tracker will answer the phone automatically without let the car driver know, then you can hear the voice around the car on your phone.

SOS Panic Button:

When the driver is in danger, driver can press the sos button, then GPS Tracker will send the SOS help alarm SMS to the 3 controller phone number,and call the controller phone number one by one to inform driver danger status.

How to install trakcer

How to Login Platform


User:ID number on device
Pass:123456(please change it after you received device)
Website: www.sinotrack.com

How to Activate Online Tracking

Send SMS configure the tracker(set IP and APN) to connect platform,
the IP:45.112.204.246 port:8090,
more info please check the user manual.
please send 3 SMS to tracker below:
SMS1:7100000
SMS2:8040000 45.112.204.246 8090
SMS3:8030000 APN APNuser APNpassword(if APN need user and pass)
the APN is Acess Point Network of SIM card,if you don'n know APN,
please check it with your SIM card operator.or check the apn from here for reference.
http://www.unlockit.co.nz/mobilesettings/

Item Specification

Item Pictures

Please identify products with SinoTrack LOGO, this is the Original SinoTrack Product.

  

Website Tracking Software

Link: www.sinotrack.com

Mobile APP

APP name: SinoTrack PRO
You can download form APP Store(IOS) or Google Play(Android)

Shipping and Reply

- We reply your questions(using,install,configure tracker) within 24h.
- We will ship item via registered Aimail in 2 days after the payment cleared.
- The shipping time sometimes maybe a little longer due to custom problems, holidays or some uncertain reasons.
- We choose shipping way according to your country,we use the AliExpress Standard Shipping(AliExpress Official Logistics).
- For most countries:around 20-30 business days(such as Europe UK,Germany,Spain.Swden..etc)(Remote areas Longer).
- You can choose fast express deliver also,delivery time 7-10days.

Payment Notice

We accept Credit Card, PayPal, Bank Transfer, Western Union, And other payment method Aliexpress support.

FAQ

Any Question please just feel free to contact us at any time!

About US

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.