Skip to main content

Top 5 Best Budget Electric Iron To Buy In India


In this article I discuss about list of top 5 best budget Electric Iron and their features and specifications. Those are very efficient and handy to use.  So, Let's talk about it.

1. Usha EI 3302 Electric Iron:-
Usha EI Electric Iron comes with grey black color and build quality is very good. It heat-up very quickly for its 1100 watts power capacity. It has 360 degree swivel cord for easy operation. It is safety to use and has a button groove for easy ironing under buttons.



2. Philips GC1905 :-

Philips GC1905 iron comes with steam with spray, so you can iron every type of cloths. Its power capacity is 1440 watts. It prevent water leakage, but never fill water completely and wait for some time before using the iron for the iron to heat up. If you don’t do this leakage will happen. It provides continuous spray steam up to 13 g/min. It also has aluminum soleplate for easy gliding on all fabrics.


3. Philips GC1010 :-

Philips GC1010 comes with Vent design for uniform steam and iron temperature-ready light. It provides continuously comfort steam spray and comes with thin soleplate for easy gliding on all fabrics and better heating. You can use it when iron heat up completely for prevent water leakage.  It provides continuously spray steam of 15 gram/min.


4. Usha EI 3602 :-

Usha EI 3602 comes with ice blue color light weight metal body with nonstick PTFE coated sole plate with compact and sturdy with a comfortable grip handle.  It provides snap action thermostat with accurate temperature control. This dry iron capacity is 1000 watt.



5. Maharaja Whiteline DI-109 :-

Maharaja Whiteline iron comes with classic blue color body with nonstick coating soleplate. It has adjustable temperature control and power capacity is 1000 watt. It is safety to use and heat-up very quickly.


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