;(function($){ $( document ).on( 'change', '#report_type,#report_period,#input_based', function(){ var url = quads_localize_data.rest_url + 'quads-adsense/get_report_adsense'; var report_type = $('#report_type').val(); var report_period = $('#report_period').val(); var input_based = (typeof $('#input_based').val() !== "undefined")?$('#input_based').val():''; var pub_id = $('#pub_id').val(); var data ={account_id:pub_id,report_type:report_type,report_period:report_period,input_based:input_based}; if($.trim(report_type) !='' & $.trim(report_period) !='' ) { $('#quads_reports_canvas').html('
'); $.ajax({ url: url, type: 'post', data: JSON.stringify(data), headers: { 'Accept': 'application/json', 'Content-Type': 'application/json', 'X-WP-Nonce': quads_localize_data.nonce, }, success: function (response, status, XHR) { quads_display_report(response); }, error: function (request, status, error) { }, }); }else{ $('#quads_reports_canvas').html('

Please select Report type and Duration

'); } } ); $( document ).on( 'click', '#quads-connect-adsense', function(){ if ( $( this ).hasClass( 'disabled_adsense_link' ) ) return; if ( 'undefined' != typeof window.quadsMapiConnect ) { window.quadsMapiConnect(); } } ); // Unique instance of "quadsMapiConnectClass" var INSTANCE = null; var quadsMapiConnectClass = function( content, options ) { this.options = {}; this.AUTH_WINDOW = null; this.modal = $( '#gadsense-modal' ); this.frame = null; if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } this.setOptions( options ); this.init(); this.show( content ); return this; }; quadsMapiConnectClass.prototype = { constructor: quadsMapiConnectClass, // Set options, for re-use of existing instance for a different purpose. setOptions: function( options ) { var defaultOptions = { autoads: false, onSuccess: false, onError: false, }; if ( 'undefined' == typeof options ) { options = defaultOptions; } this.options = $.extend( {}, defaultOptions, options); }, // Tasks to do after a successful connection. exit: function(){ if ( this.options.onSuccess ) { if ( 'function' == typeof this.options.onSuccess ) { this.options.onSuccess( this ); } } else { window.location.reload(); } }, // Initialization - mostly binding events. init: function(){ var that = this; // Close the modal and hide errors. $( document ).on( 'click', '#gadsense-modal .dashicons-dismiss', function(){ $( '#mapi-code' ).val( '' ); $( '#gadsense-modal, #gadsense-modal-error' ).css( 'display', 'none' ); } ); // Confirm code for account connection. $( document ).on( 'click', '#quads-mapi-confirm-code', function(){ var code = $( '#mapi-code' ).val(); if ( '' == code ) return; $( '.gadsense-overlay' ).css( 'display', 'block' ); $( '#gadsense-modal-error' ).hide(); var data = { action: 'quads_gadsense_mapi_confirm_code', code: code, nonce: quads.nonce, }; $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( null !== that.AUTH_WINDOW ) { that.AUTH_WINDOW.close(); } $( '#mapi-code' ).val( '' ); if ( response.status && true === response.status && response['token_data'] ) { that.getAccountDetails( response['token_data'] ); } else { /** * Connection error handling. */ $( '.gadsense-overlay' ).css( 'display', 'none' ); $( '#mapi-code' ).val( '' ); $( '#mapi-autoads' ).prop( 'checked', false ); $( '#gadsense-modal-content-inner .dashicons-dismiss' ).trigger( 'click' ); if ($.parseJSON(response.response_body).error === 'invalid_grant') { $('#gadsense-modal-error').show(); $('#gadsense-reopen-connect').one('click', function (event) { event.preventDefault(); $('#gadsense-modal-error').hide(); that.show(); }); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } ); // Account selection $( document ).on( 'click', '.gadsense-modal-content-inner[data-content="account-selector"] button', function( ev ) { var adsenseID = $( '#mapi-select-account' ).val(); var tokenData = false; var tokenString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.token-data' ).val(); var details = false; var detailsString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.accounts-details' ).val(); try { tokenData = JSON.parse( tokenString ); } catch ( Ex ) { console.error( 'Bad token data : ' + tokenString ); } try { details = JSON.parse( detailsString ); } catch ( Ex ) { console.error( 'Bad account details : ' + detailsString ); } if ( details && JSON ) { $( '.gadsense-overlay' ).css( 'display', 'block' ); var data = { action: 'quads_gadsense_mapi_select_account', nonce: quads.nonce, account : details[ adsenseID ], 'token_data': tokenData, }; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { INSTANCE.exit(); } else { console.log( response ); } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } } ); }, show: function( content ) { if ( 'undefined' == typeof content ) { content = 'confirm-code'; } this.switchContent( content ); if ( 'confirm-code' == content ) { // Open Google authentication in a child window. this.modal.css( 'display', 'block' ); var oW = $( window ).width(), oH = $( window ).height(), w = Math.min( oW, oH ) * 0.8, h = Math.min( oW, oH ) * 0.8, l = (oW - w) / 2, t = (oH - h) / 2, args = 'resize=1,titlebar=1,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t; this.AUTH_WINDOW = window.open( quads_adsense.auth_url, 'quadsOAuth2', args ); } }, // Get account info based on a newly obtained token. getAccountDetails: function( tokenData ){ var data = { action: 'quads_gadsense_mapi_get_details', nonce: quads.nonce, }; data['token_data'] = tokenData; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { if ( response['adsense_id'] ) { INSTANCE.exit(); } else if ( response['token_data'] ) { INSTANCE.switchContent( 'account-selector' ); INSTANCE.frame.find( 'select' ).html( response.html ); INSTANCE.frame.find( 'input.token-data' ).val( JSON.stringify( response['token_data'] ) ); INSTANCE.frame.find( 'input.accounts-details' ).val( JSON.stringify( response['details'] ) ); } else { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( JSON.stringify( response ) ); } } else { if ( response['raw']['errors'][0]['message'] ) { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); if ( 'undefined' != typeof quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ) { INSTANCE.frame.find( '.error-description' ).html( quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ); } else { INSTANCE.frame.find( '.error-message' ).append( ' (' + response['raw']['errors'][0]['reason'] + ')' ); } } else if ( response['raw']['message'] ) { INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); }, // Switch between frames in the modal container. switchContent: function( content ) { if ( this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ).length ) { this.modal.find( '.gadsense-modal-content-inner' ).css( 'display', 'none' ); this.frame = this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ); this.frame.css( 'display', 'block' ); $( '.gadsense-overlay' ).css( 'display', 'none' ); } }, // Show the modal frame with a given content. // Hide the modal frame hide: function(){ this.switchContent( 'confirm-code' ); this.modal.css( 'display', 'none' ); }, }; window.quadsMapiConnectClass = quadsMapiConnectClass; // Shortcut function. window.quadsMapiConnect = function( content, options ) { if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } if ( 'undefined' == typeof options ) { options = {}; } if ( null === INSTANCE ) { INSTANCE = new quadsMapiConnectClass( content, options ); } else { INSTANCE.show( content, options ); } } $(function(){ // Move the the pop-up outside of any form. $( '#wpwrap' ).append( $( '#gadsense-modal' ) ); }); })(window.jQuery); function quads_display_report(response){ var report_type = document.getElementById('report_type').value; if(report_type == 'top_device_type') { var data_length = response.length; var datasets =[]; var dates_array = []; var desktop_total =0; var tablet_total =0; var mobile_total =0; for (index = 0; index < data_length; ++index) { if(!dates_array.includes(response[index][0]) ) { dates_array.push(response[index][0]); } if (response[index][1] == 'Desktop') { desktop_total += parseFloat(response[index][2]); } else if (response[index][1] == 'Tablet') { tablet_total += parseFloat(response[index][2]); } else if (response[index][1] == 'HighEndMobile') { mobile_total += parseFloat(response[index][2]); } } datasets= [{ data: [ desktop_total.toFixed(2),tablet_total.toFixed(2),mobile_total.toFixed(2) ], backgroundColor: [ 'red', 'green', 'blue', ], label: 'Top Earning Device type' }]; var config = { type: 'pie', data: { datasets: datasets, labels: [ 'Desktop', 'Tablet', 'Mobile', ] }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true } }; }else { var data_length = response.length; var dates_array = []; var data = []; for (index = 0; index < data_length; ++index) { var date = new Date((response[index][0])); var month = date.toLocaleString('default', { month: 'short' }); var New_date_formate = date.getDate()+' '+month+' '+date.getUTCFullYear(); if (!dates_array.includes(New_date_formate)) { dates_array.push(New_date_formate); } data.push(response[index][1]); } datasets = [{ label: 'Earnings', backgroundColor: 'red', borderColor: 'red', data: data, fill: false, }]; var config = { type: 'line', data: { labels: dates_array, datasets: datasets }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true, tooltips: { mode: 'index', intersect: false, }, plugins: { title: { display: true, text: 'Chart.js Line Chart' }, }, scales: { xAxes: { display: true, scaleLabel: { display: true, labelString: 'Month' } }, yAxes: { display: true, scaleLabel: { display: true, labelString: 'Value' } } } } }; } quadsDrawChart(config); } function quadsDrawChart(config){ if(document.getElementById("quads_canvas")) document.getElementById("quads_canvas").outerHTML = ""; var new_canvas = "" + " "; document.getElementById('quads_reports_canvas').innerHTML = new_canvas; if(window.myPieChart ) { window.myPieChart.update(); } // Get the context of the canvas element we want to select var ctx = document.getElementById('quads_canvas'); // ctx.clearRect(0, 0, canvas.width, canvas.height); window.myPieChart = new Chart(ctx, config); }import countryTranslations from "./countries.js"; import interfaceTranslations from "./interface.js"; export { countryTranslations, interfaceTranslations }; const allTranslations = { ...countryTranslations, ...interfaceTranslations }; export default allTranslations; .redux-container-datetime .redux-datetime-container .input_wrapper, .redux-container-datetime .redux-datetime-container .single_wrapper { display: block; position: relative; margin: 0 4px 0 5px; padding: 0; width: 25%; max-width: 25%; min-width: 70px; float: left; clear: none; height: 57px; -webkit-box-sizing: border-box; box-sizing: border-box; vertical-align: baseline; } .redux-container-datetime .redux-datetime-container .single_wrapper { width: 50% !important; max-width: 50% !important; } .redux-container-datetime .redux-datetime-container label { display: block; position: relative; font-size: 12px !important; text-align: left; color: #999999; margin: 4px 0 2px 0 !important; cursor: default; } .redux-container-datetime .redux-datetime-container .redux-date-picker { width: 100%; } .redux-container-datetime .redux-datetime-container .redux-time-picker { width: 100%; } .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div dl { text-align: left; } .ui-timepicker-div dl dt { float: left; clear: left; padding: 0 0 0 5px; } .ui-timepicker-div dl dd { margin: 0 10px 10px 40%; } .ui-timepicker-div td { font-size: 90%; } .ui-timepicker-div .ui_tpicker_unit_hide { display: none; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input { background: none; color: inherit; border: none; outline: none; border-bottom: solid 1px #555; width: 95%; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus { border-bottom-color: #aaa; } .ui-timepicker-div.ui-timepicker-oneLine { padding-right: 2px; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time, .ui-timepicker-div.ui-timepicker-oneLine dt { display: none; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label { display: block; padding-top: 2px; } .ui-timepicker-div.ui-timepicker-oneLine dl { text-align: right; } .ui-timepicker-div.ui-timepicker-oneLine dl dd, .ui-timepicker-div.ui-timepicker-oneLine dl dd > div { display: inline-block; margin: 0; } .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before { content: "."; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before { content: ":"; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide, .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before { display: none; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div .ui-slider { position: relative; text-align: left; } .ui-timepicker-div .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; -ms-touch-action: none; touch-action: none; } .ui-timepicker-div .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: 0.7em; display: block; border: 0; background-position: 0 0; } .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-handle, .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-range { -webkit-filter: inherit; filter: inherit; } .ui-timepicker-div .ui-slider-horizontal { height: 0.8em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-max { right: 0; } .ui-timepicker-div .ui-slider-vertical { width: 0.8em; height: 100px; } .ui-timepicker-div .ui-slider-vertical .ui-slider-handle { left: -0.3em; margin-left: 0; margin-bottom: -0.6em; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-min { bottom: 0; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-max { top: 0; } .ui-timepicker-rtl { direction: rtl; } .ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; } .ui-timepicker-rtl dl dt { float: right; clear: right; } .ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; } /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInJlZHV4LWRhdGV0aW1lLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRVE7QUFBQTtDQUVJO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDRTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHRjtDQUNJOztBQUdKO0NBQ0k7OztBQU1aO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7OztBQUlBO0NBQ0k7O0FBR0o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJOztBQUlSO0NBQ0k7O0FBR0o7Q0FDSTs7QUFHSjtDQUNHO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFFQTtDQUNJOztBQUlQO0NBQ0k7O0FBRUE7QUFBQTtDQUVJOztBQUdKO0NBQ0k7Q0FBZ0I7O0FBR3BCO0NBQ0k7O0FBRUE7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJO0NBQ0E7O0FBS1I7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJOztBQUlSO0NBQ0k7O0FBR0E7Q0FDSTtDQUNBOztBQUVBO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FFSTs7QUFJUjtDQUNJOztBQUVBO0NBQ0k7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7QUFJWjtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7O0FBS1o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBOztBQUdKO0NBQ0kiLCJmaWxlIjoicmVkdXgtZGF0ZXRpbWUuY3NzIn0= */ /*# sourceMappingURL=redux-datetime.css.map */ Security Cameras – CompareInsight https://compareinsight.com Your Shortcut to the Best Deals. Wed, 16 Jul 2025 06:28:33 +0000 en-US hourly 1 https://compareinsight.com/wp-content/uploads/2025/04/Favicon-100x100.png Security Cameras – CompareInsight https://compareinsight.com 32 32 Hidden Camera 1080P WiFi Spy Camera – Spy Cam with Night Vision & Motion Detection, Wireless Indoor Security Camera for Pet/Baby/Nanny, USB Charger, App Live Feed, Smallest Smart for Home Monitoring https://compareinsight.com/product/hidden-camera-1080p-wifi-spy-camera-spy-cam-with-night-vision-motion-detection-wireless-indoor-security-camera-for-pet-baby-nanny-usb-charger-app-live-feed-smallest-smart-for-home-monitoring/ https://compareinsight.com/product/hidden-camera-1080p-wifi-spy-camera-spy-cam-with-night-vision-motion-detection-wireless-indoor-security-camera-for-pet-baby-nanny-usb-charger-app-live-feed-smallest-smart-for-home-monitoring/#respond Wed, 16 Jul 2025 06:24:52 +0000 https://compareinsight.com/?post_type=product&p=6564

Viflosae Mini Spy Camera Hidden WiFi Small Wireless Video Camera with Full HD 1080P Audio Night Vision Motion Sensor Detection Support SD Card for iPhone...

2.0
$7.99 $15.94
in stock
Walmart.com
Customer first, if there is any dissatisfaction with the product, support full refund within 30 days! HD 1080P Mini Camera Wireless Wifi Security Cam Night Vision Motion Detects with 360° Adjust Snake Tube Feature: WiFi connection(Only 2.4GHZ) to, you can live stream all your videos via...

User reviews

they are exactly like the advertisement.
one of them won't charge. horrible packaging boxes were torn and smashed.
"SCAAAM". its probably a scam it was delayed several times
Unsatisfied. This product was not what we wanted. Could not adjust picture or movement.
nothing. it came broken

1080P Indoor Camera Hidden WiFi with Night Vision Motion Detection Real-Time Nanny Cam for Home Office Security Cam

3.0
$43.99
in stock
Walmart.com
Use Multiple Cameras at the Same Time: You can set your own unique camera password and no one can hack into your camera. In addition, you can connect multiple cameras of the same APP with one phone and you can share the camera with a friend to view the video together. 1080P HD Real Time Video ;...

Mini Spy Camera Hidden WiFi Small Wireless Video Camera with Full HD 1080P Audio Night Vision Motion Sensor Detection Card for iPhone Android Security Nanny...

2.0
$7.99 $10.39
in stock
Walmart.com
HD 1080P Mini Camera Wireless Wifi Security Cam Night Vision Motion Detects with 360° Adjust Snake Tube Feature: WiFi connection(Only 2.4GHZ) to, you can live stream all your videos via smartphone or tablet App (IOS & Android Available) for remote view when you left home.Keep an eye on your...

User reviews

They advertise that there's no activation fee but when you start entering your info to activate you're informed that it cost 35.00 a month to activate the camera and you have no way of contacting anyone and don't receive a receipt thru email or anything for that matter and did I mention you pay a monthly fee. This has scam written all over it!!!

Mini Spy Camera WiFi HD 1080P Hidden IP Night Vision Camcorder Home Security Camera

5.0
$23.50 $50.00
out of stock
Walmart.com
Mini Spy Camera WiFi HD 1080P Hidden IP Night Vision Camcorder Home Security Cam Description: Features: Small size, large energy, 1080P high-definition picture quality, WIFI network camera, mobile phone remote , absorption rotated the bracket. Infrared does not light, video does not turn on...

SAYFUT Mini Wireless Camera, Hidden Spy Cameras, Full HD 1080P Portable Small HD Nanny cam with Night Vision, Video Record and Motion Detection for Home,...

$19.99 $47.97
out of stock
Walmart.com
SAYFUT Mini Hidden Camera Wireless WIFI Webcam 1080P Full HD IR Night Vision DVR Camcorder Motion Sensor Security Surveillance Product Descriptions: 1080P Full Brings You A Different Experience. This wireless IP camera lets you view real-time what's happening inside your home or office even...

Mini Wireless Hidden Spy Camera Wifi IP Home Security 1080P HD Night Vision Cam

3.0
$9.99 $29.99
in stock
Walmart.com
Feature: 1. Guard your home security anytime anywhere 2. Wide viewing angle, never miss any detail 3. With a 90-degree viewing angle, the camera provides a wide viewing range in your room. It enables you to know every movement happened in your house anytime anywhere. 4. All-purpose magnetic,...

User reviews

Fast%26 awesome delivery!
Security cameras are not reliable. I purchased this item online because it was wireless. When you scan the barcode in the manual it doesn't work to download the app on my iPhone. I had to research YouTube to figure out a way to get the actual app on my phone.All three cameras defective. Two were not charging the cameras.The third one was working for a few minutes then it became defective. I will be detailed. I followed the instructions that came with the product and as soon as I was changing the cameras since it comes with a usb wire. The product would just stay turned off rather than to power on with the blue light.Once I tape the on switch. I reach out to Walmart to contact the seller. The seller never got back to me in 48 hours, so I will request for a refund instead of an exchange for all three.
Where is the charging plugs or stationary charger so that I can use it right away? I noticed that there is one on the YouTube set up. How much is the charging apparatus that goes with these mini cams? How many square feet do these mini cams cover in the rooms or out in the yard. $59 and I have nothing and I want every penny back.
seller is a fail. Don't know about the product actually because the seller is a joke. Never did receive item. Gave them every chance but never again.
camera was smashed upon delivery. outer packaging was a blister pack bag which showed no signs of damage. I suspect the camera was an originaly returned item that was sent back out.
I'm usually pretty good at this kind of stuff ...but this time not so much luck...
The product don't even work
Junk. I could not get the Chinese App to synch wih camera.
Worst purchase. Worst quality camera ever and it's not wireless it has to be plugged in to turn on and cord isn't that long I want a refund
save your money. don't waste your money on this item. they dont work. app doesn't work. waste of time and money.
  • 【Remote Live Viewing 】This wireless camera, also known as a camera or nanny cam, is cleverly disguised as a USB charger camera. Once connected to the Wi-Fi network, users can remotely access live streaming video via an app, providing convenience and stealth for real-time surveillance from anywhere.
  • 【High-Quality Video】Despite its tiny and unobtrusive size, this micro USB charger camera delivers high-resolution 1080P video. This mini camera ensures that the captures are clear and detailed with a 140-degree wide-angle view, making it a small yet powerful tool for monitoring.
  • 【Motion Detection Push】This small and discreet camera comes equipped with motion detection capabilities, promptly sending a push to your phone. It acts as an efficient wireless nanny cam, ensuring you’re alerted to any activity in your home or office in real time.
  • 【Versatile Video Modes for Every Need】The camera offers four different modes to suit various surveillance needs: continuous video, scheduled video, alarm video, and privacy mode. It’s a versatile mini camera that provides flexibility and control over your preferences.
  • 【Enhanced Local Storage and Reliable Connectivity】Supporting up to 256GB of local storage on a micro SD card (Not Included), this tiny USB charger camera ensures your data is safe and readily available. With its stable Wi-Fi connection and ability to record videos to the SD card even without Wi-Fi, this small camera promises consistent performance and reliability.
]]>
https://compareinsight.com/product/hidden-camera-1080p-wifi-spy-camera-spy-cam-with-night-vision-motion-detection-wireless-indoor-security-camera-for-pet-baby-nanny-usb-charger-app-live-feed-smallest-smart-for-home-monitoring/feed/ 0
WYZE Cam Pan v3 Indoor/Outdoor IP65 1080P 360° Pan/Tilt/Zoom WiFi Smart Home Security Camera https://compareinsight.com/product/wyze-cam-pan-v3-indoor-outdoor-ip65-1080p-360-pan-tilt-zoom-wifi-smart-home-security-camera/ https://compareinsight.com/product/wyze-cam-pan-v3-indoor-outdoor-ip65-1080p-360-pan-tilt-zoom-wifi-smart-home-security-camera/#respond Tue, 15 Jul 2025 11:14:24 +0000 https://compareinsight.com/?post_type=product&p=6314

WYZE Cam Pan v3 Indoor/Outdoor IP65 1080P 360° Pan/Tilt/Zoom Wi-Fi Smart Home Security Camera with Motion Tracking for Baby & Pet, Color Night Vision, With...

4.0
$46.98
in stock
Walmart.com
Introducing Wyze Cam Pan v3, the pot-bellied little pan-and-tilt wonder who’s about to answer all your home monitoring needs. Forget about pets and people leaving the camera’s field-of-view. With 360° horizontal range, and a full 180° vertical range, the “field-of-view” is the entire room. And...

User reviews

Wyze Cam Pan v3. I love the flexibility of this camera. I'm able to see almost the entire space around the camera, with the exception of the floor/ ground directly below it. The installation instructions show pictures that will cause you to install it upside down, so be aware. Other than that, it's incredibly easy to install and to use.
Extremely pleased! We have 8 cams between 2 homes we have been very happy with all of them. With few exceptions, they have performed flawlessly over several years and survived our New england and southern Florida weather. Overall, very happy with all our Wyze products (cams, robotic vacuum, headphones and remote outlets) for value and reliability.
My own mini robot cam!!! This style is very quick, quiet and full of many options looking forward to learning more and I have been telling my friends and family about them. This unit is off the charts!!!!
Cameras are fair for the price. Bought multiple cameras for a friend. 1Out of 5 of the panv3 wonders and has a mind of its own . Looks up in the sky all around when it wants to. Could be better on response time during pan and tilt. I have been an installing security devices for over 20 plus years. I've seen better for the money. Overall clear picture wish you could set event record times for longer. Cameras sometimes miss recording people , or things. Analytics don't improve .
Works great until it gets wet. This camera works well. However, I had two set up outside and the both stopped working. When I disconnected them and brought them inside they both had water inside them. They are advertised as IP65 weather resistant with a picture of the camera all wet. But both did not hold up to rain. I purchased two more and sealed the speaker opening in the housing. Hopefully that will help.
Camera is possessed and perverse. I bought this camera to replace the second generation Wyze camera, which died after a few years. It took me a couple weeks to get this new camera to work properly. I would wake up in the morning to find that the camera had turned itself to face the wall, thus not recording anything of value or interest all night long. This happened several times. Looking online, I discovered that I needed to update the firmware again. So I did that, but no improvement. Then I did it again, because for some reason my first and second firmware updates had not brought the camera up-to-date. Things got better, but still weren’t quite right. I tried fiddling with advanced settings, and finally, on the third or fourth try, figured out that there is an obscure setting you have to select to focus the camera on the area you want surveilled, or else it will just turn to the wall and be useless. It’s working now, after a lot of annoying trial and error.
Okay, but... These cameras are decent, but not great. I have one by my front door that points to where we park, and though I can clearly see the vehicles that are approximately 20 yards away, I can't read the license plate or badges. So, if someone pulls up to my house to rob it, sure, there's a car, but I couldn't tell you what kind or identify it. I'm also really frustrated that most of the camera features are hidden behind a pay wall. This isn't a professional monitoring service, I'm not paying you monthly for the features my camera came with.
Kind of slow and stupid. The camera doesn't focus on people even though you put on there to have face recognition if focuses on anything moving including leaves then when a person comes around it doesn't refocus on the person and it just sits there and stares at leaves moving it doesn't adjust fast enough
Support going in circles or doesn't respond. I have had issues with this camera and another one unable to read the sd cards. I have tried different cards and still the same problem. I moved them closer to the router and still unable to retrieve video from the cards. They will record video during events I can play those videos but when I try to access the sd cards for more video during those events it says no data on card. I need this fixed asap but support just keeps you going in circles or doesn't respond.
Great when it works! I found the camera to be very buggy and slow. Sometimes it does run smoothly, but if I turn it off or go to privacy mode and try to turn it back on, it takes a bit. Then there are times where I turn it from off mode to on mode and it won’t turn on, it gets stuck with the camera face down. I have to manually move it upwards. I had high hopes for this as it’s a newer version. but I might need to buy a different type of camera because this is not as reliable as I had hoped.

Wyze Cam Pan v3 Indoor/Outdoor Wired Security Camera with Pan/Tilt/Zoom - White

4.0
$44.97
out of stock
Walmart.com
Introducing the Wyze Cam Pan v3, a versatile indoor and outdoor security camera that offers a wide range of features to keep your home or business secure. With its IP65 weather rating, the camera can be installed both indoors and outdoors, withstanding rain, wind, and snow. The 360-degree...

User reviews

Extremely pleased! We have 8 cams between 2 homes we have been very happy with all of them. With few exceptions, they have performed flawlessly over several years and survived our New england and southern Florida weather. Overall, very happy with all our Wyze products (cams, robotic vacuum, headphones and remote outlets) for value and reliability.
Wyze Cam Pan v3. I love the flexibility of this camera. I'm able to see almost the entire space around the camera, with the exception of the floor/ ground directly below it. The installation instructions show pictures that will cause you to install it upside down, so be aware. Other than that, it's incredibly easy to install and to use.
Cam pan 3. Great camera, only wish the sensing was better. It always trips and notifies that a vehicle is in the driveway. The vehicle is my truck that is always parked in the same spot.
Works great until it gets wet. This camera works well. However, I had two set up outside and the both stopped working. When I disconnected them and brought them inside they both had water inside them. They are advertised as IP65 weather resistant with a picture of the camera all wet. But both did not hold up to rain. I purchased two more and sealed the speaker opening in the housing. Hopefully that will help.
Kind of slow and stupid. The camera doesn't focus on people even though you put on there to have face recognition if focuses on anything moving including leaves then when a person comes around it doesn't refocus on the person and it just sits there and stares at leaves moving it doesn't adjust fast enough
Cameras are fair for the price. Bought multiple cameras for a friend. 1Out of 5 of the panv3 wonders and has a mind of its own . Looks up in the sky all around when it wants to. Could be better on response time during pan and tilt. I have been an installing security devices for over 20 plus years. I've seen better for the money. Overall clear picture wish you could set event record times for longer. Cameras sometimes miss recording people , or things. Analytics don't improve .
Not worth the money. This doesn't work very well at all. Constantly sending alerts for trees waving, leaves blowing, insects, but frequently misses entire deliveries. Ive contacted support numerous times, to no avail. no help offered. the cameras are just cheaply made. images quality is poor. I paid for service I didn't get. I rr cs and they were no help. never again with Wyze.
Great when it works! I found the camera to be very buggy and slow. Sometimes it does run smoothly, but if I turn it off or go to privacy mode and try to turn it back on, it takes a bit. Then there are times where I turn it from off mode to on mode and it won't turn on, it gets stuck with the camera face down. I have to manually move it upwards. I had high hopes for this as it's a newer version. but I might need to buy a different type of camera because this is not as reliable as I had hoped.
Support going in circles or doesn't respond. I have had issues with this camera and another one unable to read the sd cards. I have tried different cards and still the same problem. I moved them closer to the router and still unable to retrieve video from the cards. They will record video during events I can play those videos but when I try to access the sd cards for more video during those events it says no data on card. I need this fixed asap but support just keeps you going in circles or doesn't respond.
Not worth it. I have an Aosu camera and so far the camera has been really good I am able to review motion detection if I have a sd card inserted on the camera so I don't have to pay a subscription . I bought this wyze to test to see if it was any better as far as picture quality, but my aosu has better picture quality and no need to pay monthly subscription to view motion detection. Wyze company sucks for charging something that should be free when the camera has an SD card. I am returning this cameras.

Versatile Security Camera for Home Security: Control this indoor camera remotely via the Wyze app, with 360° pan and 180° tilt for full-room coverage. Set 4 waypoints for automated monitoring or zoom in 1080p HD to inspect details. (Not 5G compatible.)
Durable Outdoor Security Camera (IP65-rated): Built to withstand rain and extreme temperatures (requires Outdoor Power Adapter). Ideal for tracking activity outside your home or as a discreet indoor camera for nurseries or entryways
Advanced Motion-tracking Pet Camera: Automatically locks onto movement—whether it’s a dog, intruder, or family member—and follows the action smoothly. Perfect as a dog camera for monitoring pets or securing entry points

]]>
https://compareinsight.com/product/wyze-cam-pan-v3-indoor-outdoor-ip65-1080p-360-pan-tilt-zoom-wifi-smart-home-security-camera/feed/ 0
AOSU Security Cameras Outdoor Wireless, 4 Cam-Kit, No Subscription, Solar-Powered, Home Security Cameras System with 360° https://compareinsight.com/product/aosu-security-cameras-outdoor-wireless-4-cam-kit-no-subscription-solar-powered-home-security-cameras-system-with-360/ https://compareinsight.com/product/aosu-security-cameras-outdoor-wireless-4-cam-kit-no-subscription-solar-powered-home-security-cameras-system-with-360/#respond Tue, 15 Jul 2025 11:07:23 +0000 https://compareinsight.com/?post_type=product&p=6303

AOSU 2K Solar Security Camera Wireless WiFi, Outdoor Camera for home security,Auto Tracking ,Smart Siren Spotlights, works with Alexa/Google Assistant

5.0
$80.99 $500.00
in stock
Walmart.com
Family Safety, Our Priority aosu is a leading global innovator in smart home security and camera solutions. Our vision is to protect what matters most to you and provide you with peace of mind. We value your privacy as much as you do. We are fully committed to protecting your personal data using...

User reviews

The cameras work very well. The pan, Tilt, and zoom features are terrific. The audio and video qualities are wonderful. The two way communications is a wonderful feature. I highly recommend this product.
SECURITY FOR NOT MUCH MONEY. EASY MOUNT AND EASY TO USE. SOLAR WORKS WELL EVEN WITH OUR MINIMAL SUNLIGHT THROUGH FALL AND WINTER
works exactly as described. easy to set up with App; works perfect. actually bought 2; one for front yard; one for back.
Security outdoor camera. Works great for tracking all outdoor movement
Arrived right away, easy to install and so far work really good!
Great cameras. Great picture, easy to use.
Ok, so positives. Great cameras, great price. You can do amazing features with the app, and hookup is very easy. So far, i really like them, and the lights are ok but not super bright. It's a bit slow with tracking, but ok.Customer service i found to be a bit weak and not as responsive as you want. Also, directions could definitely be better. Especially with hooking up to the app. and showing you all the features. They do seem to charge pretty well. I can tell you so far pretty good, but do some research there could be better ones, but this one seems pretty good.
overall good product, excellent picture, micro sd a plus so don't need plan or cloud storage. added a wifi extender to reach and have them out further, a bit slow moving with the app but tracks very well.
The product does not meet what I expected.
I really like it wish the recording was more than 60 sec

AOSU 2K/3MP Home Security Camera System, Solar Powered 4 Cam-Kit with Spotlight & Homebase, 360° View, No Monthly Fee, Auto Tracking, Color Night Vision,...

5.0
$369.99 $800.00
out of stock
Walmart.com
Family safety is aosu’s top priority. We’re devoted to protecting what matters most to you by offering smart security solutions that blend simplicity with cutting-edge technology. Protect your home with the aosu 2K/3MP Solar Security Camera Kit with Homebase. Capture every event in clear 3MP...

User reviews

camera. had some help setting them up, the guy that set them up said they were easy to set up. they work good, I'm still learning, they do alot, i'm impressed !
Super easy to connect, update and use!!! Wow! The hook up and mounting was flawless! The tracking feature and lighting options are fantastic. The phone notification works really well and is very distinguishable from the rest of my phone tones and has amazed me at the accuracy. Love it and will buy another two. The zoom features and panning is really easy. I am amazed, especially for the co$t! I recommend them to several friends, allraedy.
Great purchase!!! I did a tremendous amount of research over about 2 months and decided on this camera kit with homebase. Absolutely the best system you can buy in the price range. Has features that much more expensive systems have!! Extremely satisfied with the purchase, very easy to set up and operate. Five stars
no subscriptions needed! very nice cameras for the money. Easy to use app, easy to set up easy to maintain and best of all no subscriptions. I had one of those other cameras( they rhyme with ding), and I got rid of it cause they kept raising their subscription rates without any justification and its mot worth the cost.
Good Product and excellent customer service. Outdoor solar security camera are working excellent and even it captures images clearly in low light. indoor camera one touch call is awesome feature and kids can easy to use. very good customer service. "Lynette" from customer service team has good knowledge on customer requests and response to email is very quick. i appreciate her service for customer satisfaction.
Great quality! I absolutely love these solar cameras. The picture quality is great, they stay charged all the time and its probably a good 30 feet from my house and still connects to the wifi. The night time display is spot on. Was able to catch a fox trying to get into my chicken house. I've had these for over 6 months now and, I have to say this brand is just great.
Working right after set up ! Very good product, easy to set up and install! Outstanding packaging. Tip: Don't forget to charge the batteries before installing them.
Great quality image!! Great quality image!! Easy installation, clear audio and talk back option. Clear instructions, step by step on how to set up your cameras and online support available right away, amazing product!
Excellent for the money. These work great, easy to install and sync connectivity without a required subscription. Would like to see more options in settings to allow for changes to frequency of scheduled scanning.
camera stopped working. camera system delivered may1 I installed them may 2 .worked fine to may13th 1 camera does t send notifications at all .been online to customer service on it .i did everything they asked checked all settings all on what they asked me to check and then asked about wifi signal at camera it was 56 set screen shot of it abd their test before you mount canera said good spot .then had me uninstall app and then redownload did it .dang camera it works just doesnt send notifications so something got be wrong with camera .so far will not send me a new camera .they keep betting around bush there is nothing else to do besides replace camera .soon going to take all down and send all back pretty soon because can only send back by May31 hate to do they are nice camera system just dealing with them is pain when you do everything and nothing else to do beside replace camera

AOSU 5MP Solar Security Cameras Outdoor Wireless, Ultra HD Video Home Security System 4-Cam Kit with 166° Ultra Wide Angle, Cam-to-Cam Sync, Color Night...

5.0
$269.99 $500.00
out of stock
Walmart.com
Family safety is aosu’s top priority. We’re devoted to protecting what matters most to you by offering smart security solutions that blend simplicity with cutting-edge technology. The aosu SolarCam Max System features 3K/5MP resolution, delivering twice the clarity of traditional 2K systems for...

User reviews

Don't give up. I'm not a tech guy, the instructions for the devices were not clear for me, I call the customer help number and they got me started quite easily, I had problems configuring the cameras for the type of security coverage we wanted, called again the jumped in and gave me some suggestions, however fumbling around and trying different settings we got frustrated, called again and they referred me to a higher level management team member (because I was tempting to return the devices), The new team member was Nicole. After the weekend Nicole jumped right into assisting me with settings , when that had little improvement she said that my concern about keeping my dog safe , she suggested a different camera. She sent it at no cost straightaway and now we are so grateful for not returning the items. The cameras are working great and my dog is in safe view in the dog-run, the support team and Nicole did a great job for us and we are grateful so our Christmas is a wonderful one and the New Year started out on a positive note. WE would recommend the AOSU camera!!
wireless cameras. They work great and the high resolution stays sharp even when you zoom in. The software gives you many options and no hickups so far. Would buy again.
Excellent coverage, clear pictures, great value. Incredible camera coverage, clear pictures, night views are clear also. Great value, fair pricing. I bought an additional camera to add to the set. All my research led to this brand and I'm more than pleased.
excellent camera. Excellent image, easy installation. Very good quality cameras. I am very satisfied with the purchase
Great purchase. These have been a peace of mind. They work great. Just don't hang them too high up where you can't get to the electric to charge them. The sun is always hazed over, over here so I have to charge mine inside every 5 days or so
Added protection and piece of mind. Easy to install. This is what my son said would work best on my property.
Crystal Clear. So far the cameras have been great! We needed to update our Wi-Fi so we can access the cameras remotely! The night and day vision is very clear!
Solar Security Camera. easy to install, kind of technical on setting up Alert system (timing, schedule), once set up works pretty good. Good overall camera coverage zones.
Great picture, terrible software. The cameras have a great picture and fantastic vision at night, however they are slow to pickup motion, doesn't always send recordings (even when the signal is FINE) and the app is terrible and clunky. Apparently it used to be better so hopefully will improve.
Poor quality. Base will not connect to cameras have to return the system- contacted manufacturer and they were no help

AOSU 4K Solar Security Camera Wireless Outdoor for Home Security with AI-Recognition Detection,Integrated Solar Panel,No Monthly Fees,Works with Alexa

5.0
$81.99 $119.99
out of stock
Walmart.com
Family Safety, Our Priority aosu is a leading global innovator in smart home security and camera solutions. Our vision is to protect what matters most to you and provide you with peace of mind. We value your privacy as much as you do. We are fully committed to protecting your personal data using...

User reviews

Love this camera it has crystal clear pictures and it has good zoom.have a little trouble with the night vision still working on that

No Monthly Fee with Homebase: All recordings will be encrypted and stored in home base without subscription or hidden cost. 32GB of local storage provides up to 2 months of video loop recording. Even if the cameras are damaged or lost, the data remains safe. Homebase also provides instant notifications and stable live streaming.
New Experience From AOSU: 1. Cross-Camera Tracking* Automatically relate videos of same period events for easy reviews. 2. Watch live streams in 4 areas at the same time on one screen to implement a wireless security camera system. 3. Control the working status of multiple outdoor security cameras with one click, not just turning them on or off.
Solar Powered, Once Install and Works Forever: Built-in solar panel keeps the battery charged, 3 hours of sunlight daily keeps it running, even on rainy and cloud days. Install in any location just drill 3 holes, 5 minutes.
360° Coverage & Auto Motion Tracking: Pan & Tilt outdoor camera wireless provides all-around security. No blind spots. Activities within the target area will be automatically tracked and recorded by the camera.

]]>
https://compareinsight.com/product/aosu-security-cameras-outdoor-wireless-4-cam-kit-no-subscription-solar-powered-home-security-cameras-system-with-360/feed/ 0
Arlo Essential Security Camera 2K | Outdoor-Indoor | 2nd Gen https://compareinsight.com/product/arlo-essential-security-camera-2k-outdoor-indoor-2nd-gen/ https://compareinsight.com/product/arlo-essential-security-camera-2k-outdoor-indoor-2nd-gen/#respond Tue, 15 Jul 2025 11:02:26 +0000 https://compareinsight.com/?post_type=product&p=6290 Monitor your home, property & keep loves ones safe: Wireless security camera (2-Pack), crystal-clear 2K video, 2-Way Audio to talk & listen. Easy home monitoring—inside & out. Expandable system. Connects to 2.4GHz Wi-Fi.
Exceptional Indoor & Outdoor Wireless Camera (2 Cameras): Watch, listen & talk. Monitor your home, property & keep loved ones safe, 2K video quality. Complete home monitoring system, add additional cameras throughout your exterior & interior.
Arlo protects your everything. Including your privacy: At Arlo, we are as passionate about privacy as we are about safeguarding your home & family. Arlo is designed to keep your personal information private and in your control.
Don’t miss a moment with the Arlo Secure App: Get real-time notifications with motion activation & live video 2-Way Audio, streaming in the Arlo app. Remote siren activation, Color Night Vision & large Field of View (130 degrees) & Integrated Spotlight.
Get more with an Arlo Secure plan (paid plan required): Share & store video for up to 60 days, know more with personalized alerts for Person & Vehicle Recognition, plus get alerts for Packages, Animals, and Fire Detection.¹
Expert support at your fingertips: Access help through the Arlo app and connect with our community to learn and share. 24/7 chat support available via app or website. Product use & support for United States only.

]]>
https://compareinsight.com/product/arlo-essential-security-camera-2k-outdoor-indoor-2nd-gen/feed/ 0
TP-Link Tapo 1080P Indoor Security Camera for Baby Monitor, Dog Camera w/Motion Detection, 2-Way Audio Siren, Night Vision, Cloud & SD Card Storage, Works w/Alexa & Google Home (Tapo C100) https://compareinsight.com/product/tp-link-tapo-1080p-indoor-security-camera-for-baby-monitor-dog-camera-w-motion-detection-2-way-audio-siren-night-vision-cloud-sd-card-storage-works-w-alexa-google-home-tapo-c100/ https://compareinsight.com/product/tp-link-tapo-1080p-indoor-security-camera-for-baby-monitor-dog-camera-w-motion-detection-2-way-audio-siren-night-vision-cloud-sd-card-storage-works-w-alexa-google-home-tapo-c100/#respond Tue, 15 Jul 2025 11:01:12 +0000 https://compareinsight.com/?post_type=product&p=6270

TP-Link Tapo C100 1080P Indoor Wired Motion Detection Security Camera With 2-Way Audio Sire & Night Vision

3.0
$27.70 $34.99
out of stock
Walmart.com
Night Vision up to 30 Ft.Never miss a thing that goes on, even at night thanks to the integrated IR system on this indoor camera which provides 30 feet of night vision. 1080P FHDCapture every detail inside your home with crystal-clear 1080P high definition video with this indoor security camera....

User reviews

It works. Video good works like promised .the sound is off. I can not understand what is being said. But for the price and what i was looking for, a camera to see who is entering with out permission it is good!!!!
Generic camera received instead of Tapo cam. I ordered the Tapo camera as I have other Tapo and Kasa branded devices. I received a generic wifi cam that does not work with any trusted android app. If intentional, this is fraudulent and misleading at best. If it was a mistake, I will update my review once i receive the correct device.
Fake, cheap camera. Don't buy from seller Hibalala. I bought the TP-Link Tapo C100 security camera from this seller Hibalala but I received a generic, cheap and FAKE camera that ask me to use the iWFCam app. This is TOTALLY BAIT %26 SWITCH.

TP-Link Tapo Smart Home Security WiFi Camera, Records in 1080p (Full HD) | Up to 40 ft Night Vision | Up to 512 GB microSD Card Slot | C100(4-Pack)

4.0
$69.99
out of stock
Walmart.com
TP-Link Tapo Smart Home Security WiFi Camera, Records in 1080p (Full HD) | Up to 40 ft Night Vision | Up to 512 GB microSD Card Slot | C100(4-Pack)

TP-Link Tapo Smart Home Security WiFi Camera, Records in 1080p (Full HD) | Up to 30 ft Night Vision | Up to 128 GB microSD Card Slot | Works w/Alexa and...

5.0
$24.58 $24.99
in stock
Walmart.com
Tapo C100 - Network surveillance camera - colour (Day&Night) - 1080p - fixed focal - audio - wireless - Wi-Fi - H. 264 - DC 9 V

User reviews

easy enough, even for me to set up. Oh, and dont forget a micro sd card. It's very cheap on Walmart or the other mega store.
Great camera. Very nice. The picture is very clear and voice works well on it. Very satisfied with it and recommend it for anyone wanting a camera.
Good quality and affordable.
Affordable and works really well with phone. NO monthly cost. Great features: talk alarm pictures
I like tp link camera. Works perfect
Great camera for the price, clear picture. The only issue is the Mico sd card keeps disconnecting and I have to reboot. I tried different cards with the same result.
Good camera for the price! Good camera for the price! Bought it on sale for $15, and it's hard to find anything remotely competitive at that price from a reputable brand like TP-Link. Image quality is good enough, and night vision seems to work well. Also was pretty easy to pair with my existing iSpy DVR setup! Only complaint is that the app is a little finnicky and initial network setup took a few tries before it worked.
Easy setup , simple settings menu. Good video quality . good value .
still working on getting it set up...
Slow shipping. Haven't opened it yet but shipping took over a week due to weather I believe

TP-Link Tapo TCW30 Indoor/Outdoor HD Security Camera with Pan/Tilt, Sound & Light Alarm, AI Detection & Local Storage — Enjoy 24/7 Coverage with No...

5.0
$24.88
in stock
Walmart.com
Tapo TCW30 provides comprehensive home security with instant smart alerts for motion, person detection, and even baby cries, all without requiring a subscription. Its 360° horizontal and 90° vertical pan/tilt capabilities ensure complete coverage of your space, while IP65 water and dust...

User reviews

Best Bang for your $$. If you're looking for a cheap alternative to a Google nest outdoor camera, this is the one only flaw is that it does not directly stream to the Google home app. You have to have a Google home hub or a Google home screen in order to see it without using the app that it uses the 360° horizontal and 180° vertical is absolutely awesome.
best. camera. ever. for the price lol. this camera is SOOOO much better than my other $65 indoor camera. I regret so much not getting this camera sooner
Tapo WiFi Camera. Works as advertised. Nice design.
Great advance in home security. Excellent product, seamless app.
Perfect. [This review was collected as part of a promotion.] This is perfect. I'm going to use it in my basement for security and to make sure my kid is safe if I need to step into the kitchen or something. The sound quality and video are great! There's a way to add it to the wall to allow for tilt and it can be used indoor and out. It also comes with a slot for micro SD which is amazing, unlike other brands that require a subscription for storage. It's all in all a great solution
You need one of this. [This review was collected as part of a promotion.] This camera is simply next level!! I have a puppy cam to keep an eye out for my furry child and it was okay. I was not able to hear if he was barking or see him very well. This camera has been a game changer. It is 360degrees, I can see him anywhere. Also, I can hear him barking. The resolution on this camera is simply the best! The app is very nice. I really love it. It has been simply the best and I can't recommend it enough!
Highly recommended! [This review was collected as part of a promotion.] I'm very happy with the Tapo TCW30 camera! The setup was easy, and the app is available in my native language, Russian, which makes it very convenient to use. I especially love the instant notifications I get whenever motion is detected — it's very reassuring to know what's happening around my home in real time. The image quality is great even at night, and I appreciate that it works both indoors and outdoors. Definitely a great choice for home security!
Amazing quality picture. [This review was collected as part of a promotion.] I am currently using this as a baby camera right now, but I will be putting up in my front yard soon. The quality is pretty amazing, i have another type of baby cam set up by the picture is not a clear as this one. I like how it's can talk thru it if needed. It's a two way speaking camera. Very clear sounds come through it as well. You can move it from your phone, up down side. You can record or take pictures from the app. It has a light that you can turn on, it is very bright, it works great for outdoors, way brighter than a phone flash light that's for sure. I took a picture of myself after I zoomed in a little bit so you can see the quality
Simple to use, easy to install. Great App feature. [This review was collected as part of a promotion.] Great little indoor/outdoor camera to add to our home security! We were in need of a backdeck security monitoring system and this was super easy to install and download the FREE app! It's a little tricky to have to have it plugged in with an outdoor power cord but we're working on it. Actually, for the price point it's sort of a nice simple deterring feature to keep people away without even using all the features. Perfect for a child's bedroom, great that the vision is for day and night use with motion alerts in the setting. Camera head easily spins up and down and 360 degrees all the way around! Simple and easy and ready to use immediately, love it! Thrilled to have added extra secure feeling to my backyard.
I could not program it to my phone.

【Motion Detection & Instant Notification】Get instant push notifications when motion, person or baby crying is detected, there is no additional fee to use it as a baby camera monitor. Discern from notifications that matter, so you’ll know if its your pet playing around or if someone is actually there. Connects via 2.4GHz Wi-Fi Band
【2-Way Audio w/ Built In Siren】Never truly leave home with the built-in 2-way audio. Use as a pet camera with phone app to comfort your pet from anywhere in the world. Keep your family safe with cameras for home security indoor by warding off intruders.
【Night Vision up to 30 Ft.】Never miss a thing that goes on, even at night thanks to the integrated IR system on this indoor camera which provides 30 feet of night vision.
【1080P FHD】Capture every detail inside your home with crystal-clear 1080P high definition video with this indoor security camera. Easily see what your baby is holding or what your pet is playing with. Connects via 2.4GHz Wi-Fi Band

]]>
https://compareinsight.com/product/tp-link-tapo-1080p-indoor-security-camera-for-baby-monitor-dog-camera-w-motion-detection-2-way-audio-siren-night-vision-cloud-sd-card-storage-works-w-alexa-google-home-tapo-c100/feed/ 0