VECLESUS VMS Backup Camera Kit, 7” LCD Rear View Monitor, 66FT(20M) Extension Video Cord, Super IR Night Vision Wired Backup Camera for Truck, RV, Trailer, Bus, Harvester, Boat, Yacht, Large Vehicles

▶7 inch wide screen, super night vision, IP68 waterproof rating<br>▶66ft(20 meters) extension cable, easy installation<br>▶Work perfectly on 9~36V, 1 audio input, can be added two cameras
New Arrival Best Seller
const TAG = 'spz-custom-revue-star'; class SPZCustomRevueStar extends SPZ.BaseElement { constructor(element) { super(element); } static deferredMount() { return false; } buildCallback = () => { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.starNum = this.element.getAttribute('starNum'); this.starTotal = this.element.getAttribute('starTotal'); this.showStarText = this.element.getAttribute('showStarText'); this.starColor = this.element.getAttribute('color'); this.interact = this.element.getAttribute('interact'); this.starSize = this.element.getAttribute('starSize') || 14; } mountCallback = () => { this.doRender_({ starTotal: this.starTotal, totalArray: Array.from({ length: Number(this.starTotal) }, (v, k) => k + 1), starNum: this.starNum, showStarText: this.showStarText, starColor: this.starColor, starSize: this.starSize }).then(() => { if (this.interact) { this.addEventListeners_(); } }); } addEventListeners_ = () => { const stars = document.querySelectorAll('.revue-star__star'); stars.forEach(star => { star.addEventListener('click', event => { const starEl = star.closest('.revue-star__star'); const starIndex = Number(starEl.dataset.index); let isHalf = event.offsetX < star.offsetWidth / 2; // rtl if (document.documentElement.getAttribute('dir') === 'rtl') { isHalf = event.offsetX > star.offsetWidth / 2; } const starValue = isHalf ? starIndex - 0.5 : starIndex; this.starClickHandler_({ value: starValue }); }); }); } renderStar = () => { const isRtl = document.documentElement.getAttribute('dir') === 'rtl'; const stars = this.element.querySelectorAll('.revue-star__star'); stars.forEach((star, i) => { const starIndex = i + 1; const starEl = star.querySelector('svg:nth-child(2)'); const isHalf = this.starNum % 1 > 0 && Math.ceil(this.starNum) === starIndex; const isSolid = starIndex <= Math.ceil(this.starNum); starEl.style.display = isSolid ? 'block' : 'none'; if (isHalf) { if (isRtl) { // RTL布局下,如果是半星,显示星星的右半边 starEl.style.clipPath = `polygon(50% 0, 100% 0, 100% 100%, 50% 100%)`; } else { // LTR布局下,如果是半星,显示星星的左半边 starEl.style.clipPath = `polygon(0 0, 50% 0, 50% 100%, 0 100%)`; } } else { starEl.style.clipPath = `polygon(0 0, 100% 0, 100% 100%, 0 100%)` } }); const showCountEle = this.element.querySelector('#revue-star-show-count'); showCountEle && SPZ.whenApiDefined(showCountEle).then((api) => { api.render({ starNum: this.starNum, starTotal: this.starTotal }); }); } doRender_ = (data) => { return this.templates_ .findAndRenderTemplate(this.element, { starSize: this.starSize, ...data }, null) .then((el) => { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); this.element.appendChild(el); }) .then(() => { this.starNum = data.starNum; this.renderStar(); }); } starClickHandler_ = (event) => { this.starNum = event.value; this.renderStar(); this.triggerEvent_('change', { value: event.value }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SPZCustomRevueStar)
()
try { const productId = window.SHOPLAZZA.meta.page.resource_id; const productType = `default`; const getProductReviews = (star_least) => fetch('/api/comment/count-star-multi', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ product_id: [productId], star_least: star_least || 1, }), }).then(res => res.json()); try { const section = document.querySelector('#revue-product-star'); if(productType === "gift_card" && section) { section.style.display = 'none'; } } catch(e) { console.log(e); window.addEventListener('load', () => { try { const section = document.querySelector('#revue-product-star'); if(productType=== "gift_card" && section) { section.style.display = 'none'; } } catch(e) { console.log(e) } }) } const getReviewsConfig = async () => { let data = {}; const url = new URL(window.location.href); const preview_theme_id = url.searchParams.get('preview_theme_id'); const commentConfig = await fetch('/api/comment-config', { method: 'GET', headers: { 'Content-Type': 'application/json', } }).then(res => res.json()); data = commentConfig.data; const themeConfig = await fetch(`/api/comment-config?theme_id=${preview_theme_id || ''}`, { method: 'GET', headers: { 'Content-Type': 'application/json', } }).then(res => res.json()); if (themeConfig?.data && themeConfig.data.star_color) { data.star_color = themeConfig.data.star_color; } if (preview_theme_id) { data.star_least = window.apps_global && apps_global.reviews && apps_global.reviews.preview_star_least; } else if (themeConfig?.data && themeConfig.data.product_settings) { data.star_least = themeConfig.data.product_settings.star_least; } return data; }; if (productId && window.SHOPLAZZA.meta.page.template_type == 1) { getReviewsConfig().then(async res => { const config = res; let review = await getProductReviews(config.star_least); review = review.data[productId]; if (!config.open_status || (!review.comment_avg_star && !config.show_no_comment_star)) return; const render = async () => { const section = document.querySelector('#revue-product-star'); const starComponent = document.querySelector('#revue-product-star-component'); const count = document.querySelector('#revue-product-star-count'); count.innerText = review.published_count; const api = await SPZ.whenApiDefined(starComponent); api.doRender_({ starNum: review.comment_avg_star, starTotal: 5, showStarText: false, starColor: config.star_color, totalArray: Array.from({ length: 5 }, (v, k) => k + 1) }); section.style.opacity = 1; } render(); document.addEventListener('dj.editor.update', render); }); } } catch (e) {console.warn(e)};
120010 sold
$159.99
$199.99
-$40.00
VMS System- VMS System
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Shipping
Estimated Delivery:Nov-15 - Nov-19
Vendor by: VECLESUS
SKU: VMS-VMS
Description

VECLESUS 7-inch Wired Backup Camera Kit Highlights:

▶For Large Vehicles Parking Safety - Comes with a 66ft(20M) extension video cord, widely applicable to all kinds of medium or large vehicles, can work perfectly on wide voltage 9~36V, suitable for heavy-duty and long vehicles, such as RV, motorhome, bus, cargo van, box truck, flatbed truck, bucket truck, tractor and school bus, etc. NOTE: For trailers, we recommend buying VECLESUS trailer backup camera system VMST(which include trailer kit)

▶Easy to Install - This backup camera system powered by fuse box, connected the red to ACC(9-36V), the black connect the Metal (Ground), the green connect the reverse gear circuit as a trigger power, monitor and backup camera will automatically turn ON/OFF when the vehicle is ON/OFF, different channels can set by the button on monitor, NOTE: CH2 is as reversing channel, can be triggered by the Green wire (Connection Diagram and Installation Instruction are included)

▶7 inch Rear View Monitor and 2 Channel Video Inputs - 7 Inch LCD display monitor can directly attached to dashboard or windshield with provided brackets, and the monitor also has capability to monitor two video inputs CH1/CH2. CH2 connects reverse camera, and CH1 can add a front/side camera for better safety. Additional backup camera recommended: VECLESUS VC2( ASIN: B07JQFDVFR ) or VC3( ASIN: B08C4V84D1 )

▶Wide Voltage 9-36V for Widely Used - Support Voltage Range From DC 9-36V DC Power, perfect for wide variety of all large Vehicles, especially suit for Trucks/ RVS/ Trailers/ Bus/ Harvester/ Pickup/ Motor Home/ Van and etc. No worry about the length of the cable, it is equipped with 66ft(20M) cable to meet all your needs

▶IP68 Waterproof and Super IR Night Vision - Based on IP68 Waterproof Level and CMOS Sensor will present superior clear images even on rainy days. While the IR LEDs will give low light compensation and ensure the vivid images during the night

▶Reliable service& Warranty - Our car backup camera system has 2 year Warranty and 24 hours tech support and replacement service. Any problems, please feel free to contact us via amazon or the method to contact us had highlighted on the user instruction

 

Product Information:

  • Panel Size: 7" TFT LCD digital panel
  • Camera Sensor: 1/3" Sharp colour CCD
  • Resolution: 800*RGB*480
  • Brightness: 300cd/㎡
  • Screen Mode: 16:9
  • Video System: NTSC / PAL auto-detection
  • Built-in speaker, removable wide sunshade
  • Horizontal Viewing Angle: 100°
  • Diagonal Viewing Angle: 120°
  • Camera Waterproof Rating: IP68
  • Power Supply: DC 9~36V
  • Overall Dimensions: 5.31"(H) x 8.27"(L) x 2.95"(D)

    Tips for loyal customers:

    • During installation, please refer to the wiring diagram above and the user manual in the package.
    • We also offer video installation on YouTube, where you can search VECLESUS to find it.
    • Some common tools used in the installation process are:Small flat-tip screwdriver, Phillips screwdriver, black electrical tape, masking tape, pliers, multimeter, pencil/ marker, electric drill.
    • Audio/Video Input: CH1, CH2, 1 Audio & Video input.

    Note:

    1. Although this product is a one-to-one backup camera kit, the power cord is still equipped with two signal input 4-PIN connectors. If you need to use two cameras, please purchase our extension cord and the corresponding camera CV2.
    2. In addition, generally, the spare AV input port can also be used as channel CH3 by connecting the AV-in cord.
    3. This kit is powered by the power supply at fuse box in your vehicle cab, please find out the continuous power supply and reversing power supply with the test pencil or multimeter, then connect the red wire of the power cord to it and the black wire to the GND or iron part, green wire to reversing power supply.
    4. If you need the system for reversing only, please connect the camera to the CH2 and connect the green reversing wire to the reversing circuit.
    5. If you need the system continuous on when driving or parking, connecting the camera to CH1 and ignore the green reversing wire!OSD menu, Remote Control.

    FAQ:

    Will I be able to install this camera system myself?

    Many people do have the handiness to install our systems without having to hire assistance. Otherwise, we recommend professional installation as they can let the system is installed correctly.

    How does the system receive power?

    This system can be worked in 9-36V, it receives power straight from the vehicle's fuse box.

     

You may also like

Customer Reviews

18 Reviews
Thompson
2025.01.09

The UV light is very pure with the professional filter lens, no stray light at all. Works perfectly for lab experiments.

Stephen
2024.10.17

The beam pattern is impressively uniform, with no overly bright hot spots—looks very professional.

LIGHTFE P30
$39.99
Jelena
2025.03.07

The battery life is excellent—runs for hours without issues. Solid construction, feels very durable.

Brian Philliber
2025.07.16

This is one of the best backup camera kits I’ve bought. Night vision works well even in dim parking lots, the guidelines show up clearly, and the overall build quality feels premium.

Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Name
Add customer reviews and testimonials to showcase your store’s happy customers.
Load more

Safety System

Professional Flashlight