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

How To Make Radar With Arduino UNO Using Ultrasonic Sensor

  Creating a radar system with an Arduino UNO and an ultrasonic sensor involves a few straight forward steps. First, you'll need to connect the ultrasonic sensor's trigger pin to one of the Arduino’s digital output pins and the echo pin to a digital input pin. Then, write a simple Arduino sketch to send a pulse from the trigger pin and measure the duration of the pulse received on the echo pin. This duration, proportional to the distance of an object from the sensor, can be calculated using the speed of sound. By continuously taking readings and mapping them to distances, you can plot these measurements to visualize objects in your environment, effectively creating a basic radar system. To display the results, you could use a serial monitor or even integrate an LCD display for real-time feedback. Here is the code below ,- //radar.ino #include <Servo.h>  const int trigPin = 9; const int echoPin = 8; long duration; int distance; Servo myServo;  void setup() {   p...