Skip to main content

Top 5 Best Semi Automatic Washing Machine To Buy



Hi! In this article I write about list of top 5 best semi automatic washing machine to buy in India 2017-2018 and also describe their features and specifications. 

1. LG 7.5 Kg Semi Automatic Washing Machine :
LG semi automatic washing machine comes with decent price  and its capacity is 7.5 kg of top load and it is suitable for 4 members family.  It  washes any types of cloth very quickly and clean for its roller Jet Pulsator washing mode with 1000 rpm high speed motor. Its weight 35 kg  and power consumption is 360W.

2. Whirlpool 8 Kg Semi Automatic Washing Machine :
This 27kg washing machine offers excellent value for money. It takes load capacity up to 8kg with a 1450 rpm powerful motor. It has 3 washer programs with Impeller washing method. The power consumption of this washing machine is 340W.

3. Godrej 6.8 kg Semi Automatic Top Load Washing Machine :
This Godrej semi automatic top load washing machine comes with good quality body with 22kg weight. This machine performs up to  6.8 Kg load capacity and it is good for a family of 4. The 650 rpm  of motor is on the lower side but it won't make a major difference in wash quality.  It has Tri-roto Scrub Pulsator washing mode with 2 wash programs and power consumption is 370 w.

4. Samsung 6.5 kg Semi Automatic Top Load Washing Machine :
This Samsung washing machine's build quality is solid with a 740 rpm powerful motor. Its top load capacity is 6.5kg and power consumption is 350w. It comes with 24.5 kg of weight and has Pulsator washing mode.

5. LG 7 kg Semi Automatic Top Load Washing Machine :

This 36 kg LG washing machine  build quality is solid. This washing machine has a 1000 rpm powerful  motor with top load  7kg capacity . It is very good for a family of 4. It has normal pulsator washing mode and power consumption is 360w.

Those washing machines are best for household work of 4-5 family members. So , you can choose your best semi automatic washing machine from here.

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