TOGUARD SC14 2K/4MP Solar Wireless Security Camera System Outdoor Battery WiFi Bullet Surveillance Camera Wireless Connector

$246.99
$539.99
-$293.00
Quantity

Description

Introducing the SC14 4CH Solar Security Camera System, Say goodbye to complicated installations and enjoy hassle-free security.

Equipped with a high-resolution 2K/4MP lens, the Camera captures crystal-clear images and videos, allowing you to closely monitor your surroundings. The integrated solar panel and battery power ensure continuous operation without the need for frequent recharging or wiring. Featuring two-way audio, you can communicate in real-time with anyone near the camera, making it perfect for monitoring entrances, front desks, or rental properties.The private base station ensures a secure connection to the camera, without compromising the speed of your WiFi network. Additionally, the camera can also be independently connected to your WiFi network, providing flexibility and convenience.

Equipped with IP66 waterproof rating, infrared night vision and a PIR motion sensor, the SC14 ensures 24/7 surveillance. Rest assured knowing that any movement or activity will be detected and recorded.

 

  •  

    💎【2K/4MP High-resolution 】

    With 2K/4MP lens and infrared night vision, it ensures clear and detailed footage day and night for enhanced security monitoring both indoors and outdoors.


    💎【Two-way Audio 】

    Enjoy two-way audio communication with built-in microphone and speaker, allowing you to listen and talk to your visitors or deter intruders.


    💎【Solar-Powered Efficiency】

    Say goodbye to frequent battery changes. ntegrated solar panel and battery power supply ensure continuous surveillance without the need for constant charging or battery replacement.


    💎【Independent Network】

    Dedicated base station provides a stable and reliable network connection, without occupying the speed of your WiFi. providing extended coverage for your security camera system.


    💎【All-Weather Durability】

    IP66 waterproof rating and infrared night vision capabilities enable the camera to withstand any weather conditions, making it suitable for outdoor use.


    💎【Smart Motion Detection】

    Equipped with a PIR motion sensor, this camera detects any movement and sends instant app push notifications to your smartphone.Access your footage with remote access feature, stay informed about any potential security threats in real-time.


    💎【Advanced Features】

    Benefit from advanced features such as infrared night vision, micro SD card and cloud storage, and multi-user sharing for enhanced security and convenience.


     

  •  

    📜Specifications

    🔖High Definition :2K/4MP (Full HD)

    🔖private network standard: IEEE 802.11 ( 2.4GHz WiFi NOT support,5G WiFi NOT support, No network cable)

    🔖Audio: Two-way Audio

    🔖Night Mode: Infrared night vision

    🔖Visible Distance at Night: 15M/50ft

    🔖Sensor Detection: Support PIR Motion Detection

    🔖Waterproof: IP66

    🔖TF Card: Support up to 128G Micro SD Card(NOT included)

    🔖Cloud storage: Supported

    🔖Power Supply(V): AC 5V/1A


    🚨Warm Tips

    💢The base station does not support connecting to the network via 2.4G/5G WiFi, but can only connect to the router via a network cable

    💢Our camera supports micro SD card up to 128G, but the micro SD card is NOT included in the package

    💢The base station can insert a SD card to store the video to avoid the video is lost.


     

  •  

    📜Package Includes:

    📦4 x 2K solar outdoor camera

    📦1 x Base Station 

    📦1 x Screw packs for camera mounting

     📦1 x USB Cable

    📦1 x 5V/1A Type-c wall charger Cube

    📦1 x Network cable  

    📦1 x User manual

    📦1 x Quick Guide Card

    📦4 x Positioning sticker

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.