Skip to main content

Top 5 Best Waterproof 4k Action Camera In India



Here  I discuss about  top 5 best waterproof 4k action camera in India and those features and specifications. If you are a vlogger or have a hobby to film your daily life beautiful moments then definitely action camera is the best for you.


1. Pluto Plus Pro 4 : http://amzn.to/2xDhIPA

It is remote sports action camera with water proof. It comes with 20 megapixels 4K Ultra HD resolution. It supports loop recording, time lapse and slow motion. You can charge it with any charger with Micro USB Port. It also comes with AIT 8428 Chipset with OV4689 Image Sensor.


2. EZVIZ 5 PLUS Action Camera: http://amzn.to/2xEcpiY

This action camera comes with waterproof touch screen case with 4K Ultra HD resolution. It has black plastic body. It is perfect for any sports video recording and fast moving video recording. It supports Wifi also. Its waterproof case can protect camera up to 10 ft. underwater. You can record video in cold weather as low as -20°C.


3. NETGEN Action Camera :  http://amzn.to/2A2PuPF

NETGEN Action Camera comes with 2-Inch High-definition LCD with 170 Degree Ultra Wide Angel Lens , So,  you can easily capture HD pictures of all kinds of occasion. You can capture 4k Ultra HD videos with it. It has also waterproof case which can protect camera up to 100 Feet under water. It also comes with 25 accessories includes car mount carry bag control. It has built-in Wi-Fi, which can control camera from distances of up to 50-feet.


4. Pluto Plus G22 Sports Action Camera : http://amzn.to/2xCR7ls

It comes with waterproof case which protect camera up to 30M under water. It also comes with 170 degree super wide angel lens with 12 MP full HD resolutions. It is power up with 900mAh battery and you can charge it with any USB charger.


5. ASPA, Sports Action Camera : http://amzn.to/2xCOcJP

ASPA action camera comes with 12mp resolution and 170° wide angle lens with 4k full HD resolutions. It has 2 inch LCD display. It also comes with waterproof case so, you can film up to 30 meters under water. You can charge it from your laptop or power bank. But here is no adapter include in this package so you have to buy this. It supports Wi-Fi function also.                 

Comments

Popular posts from this blog

Clap On Off Switch Circuit Using Arduino

  Arduino Clap LED program #define MicAO 8 int ledPin = 13; int clap = 0; long detection_range_start = 0; long detection_range = 0; boolean status_lights = false; void setup() {   pinMode(MicAO, INPUT);   pinMode(ledPin,OUTPUT);   } void loop() { int status_MicAO = digitalRead(MicAO); if (status_MicAO == 0) { if (clap == 0) { detection_range_start = detection_range = millis(); clap++; } else if (clap > 0 && millis()-detection_range >= 50) { detection_range = millis(); clap++; } } if (millis()-detection_range_start >= 400) { if (clap == 2) { if (!status_lights) { status_lights = true; digitalWrite(ledPin, HIGH); } else if (status_lights) { status_lights = false; digitalWrite(ledPin, LOW); } } clap = 0; } }

Bluetooth Robot Car Using Arduino Project Step By Step

Bluetooth Controlled Robot Car Using Arduino Bluetooth Controlled Robot Car Using Arduino Project using LM298n motor deriver and hc-05 bluetooth module step by step tutorial. Code Download :- Click Here Arduino bluetooth controller app Arduino bluetooth controller App

IOT Based Water Level Indicator Project Using Esp32 And Ultrasonic Sensor

  Water Level Indicator Project Using ESP32   Water Level Indicator with Alarm on Tank Full.   IoT Wi-Fi smart water level indicator for tanks with mobile app control . 📟 OLED Display (0.96" I2C SSD1306)   OLED Pin         ESP32 Pin VCC                     3.3V GND                     GND SDA                    GPIO 21 SCL                      GPIO 22     🔔 BUZZER   Buzzer Pin        ESP32 Pin   +           GPIO 26 -            GND         Each LED connects to an ESP32 GPIO pin via a current-limiting resistor.   ...