Skip to main content

Top 5 Best 192 L Single Door Refrigerator In India 2018




Here I discuss about list of top 5 best Samsung 192 L Single Door Refrigerator in India 2018. I also discuss those features and specifications. So, let’s talk about it.

1. Samsung 192 L 2 Star Refrigerator(RR19M2712RJ/RR19M1712RJ): -



Samsung 192 L Single Door direct cool Refrigerator comes with sleek body with Royal Tendril Red color. It is Suitable for families with 2 to 3 members and Its Energy Rating has 2 Star. Its Freezer Capacity is 25 ltr and food capacity is 167 ltr. It can keeps your foods fresh for a long time. It also has a safety cover which protects your child from touching the coil and ensures durability of the compressor.

2. Samsung 3 Star Direct Cool Single Door Refrigerator(RR20M172ZS8/RR20M272ZS8) :-


Samsung 192 L Direct Cool Single Door Refrigerator comes with sleek body with Elegant Inox color. It has also Inverter Compressor facility so it performs very well during power cut-off. Even it has a built-in stabilizer for stabilized voltage. It is Suitable for families with 2 to 3 members and Its Energy Rating has 3 Star. It is also Energy efficient so It save your electricity bill. This Refrigerator also keeps your food fresh and tasty for a long time.

3. Samsung 192 L 4 Star Direct-Cool Single-Door Refrigerator(RR20M182YR3/HL / RR20M282YR3/NL) :-


Samsung 192 L Direct-Cool Single-Door Refrigerator comes with steel body with Rose Mallow Plum color. It is Suitable for families with 2 to 3 members and Its Energy Rating has 4 Star. Its voltage capacity is 100 volts. It also has in-built Inverter and Pedestal facility that keeps your food fresh and tasty for a long time.

4. Samsung 192 L 5 Star Direct-cool Single Door Refrigerator(RR20M1Y2XUT/RR20M2Y2XUT) :-  


Samsung 192 L Direct-cool Single Door Refrigerator comes with sleek body with Pebble Blue color. Its Energy Rating has 5 Star. It also has Digital Inverter Compressor facility. This Refrigerator’s Freezer Capacity is 25 liters and food capacity is 167 liters. It has Digital Inverter Compressor facility which keeps your food fresh and tasty for a long time.



5. Samsung 192 L 3 Star Direct-Cool Single-door Refrigerator(RR19J20A3RH/TL) :-


Samsung 192 L Direct-Cool Single-door Refrigerator comes with Stylish crown design body with smooth back. Its Energy Rating has 3 Star. Its wattage capacity has 3040 watts. This Refrigerator’s Freezer Capacity is 18 liters. It also has in-built stabilizer for stabilized voltage and a powerful compressor which operate at 50°C. It keeps your food fresh and tasty for a long time.

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.   ...