Skip to main content

Top 5 Budget Electric Kettle In India



In this article I discuss about Top 5 Electric Kettle in India and those features and specifications. So let’s talk about it.

1. Prestige Electric Kettle PKOSS 1.8Ltr :
Prestige Electric Kettle is very good looking and has elegant handles with single touch lid locking system. Its capacity is 1.8 liter and power-up with 1500 W. It has automatic cut-off function when water will boiled.  This electric kettle has power indicator with 360 degree swivel base.

2. Pigeon Egnite 1.7 L Electric Kettle :
Pigeon Egnite kettle’s body made by concealed element and it has a cool touch handle with lockable lid. It also comes with water level indicator.

3. Prestige PKGSS 1.7 1500-Watt Electric Kettle :
This electric kettle comes with stainless steel body and single touch lid locking system with concealed element and automatic keep-warm function and also automatic cut-off function. It provides 360 degree swivel power base and it power up with 1500 watts capacity. This kettle not suitable for boiling milk and the water should be filled just below the "max" level, if it is filled more; there is a possibility of the water leakage.

4. Pigeon Kessel 12173 1.2-Litre Multi-purpose Kettle (Silver) :
This Pigeon multi-purpose kettle comes with cool touch handle and lid knob with temperature control system. It is power-up with 600 watts capacity. It has 360 degree swivel base so, you can move it easily.


5. Prestige PKOSS 1.2-Litre Electric Kettle (Silver) :
Prestige Electric Kettle body design by elegant stainless steel and it has elegant handle with single touch lid locking system. It also provides wide mouth for easy cleaning and concealed element with power indicator. It has automatic cut-off function when boiled water. Its disadvantage is that it is only boil water not milk.

Checkout Letest Price of Electric Kettle :- 
1. Prestige Electric Kettle PKOSS 1.8Ltr : http://amzn.to/2A11MIA
2. Pigeon Egnite 1.7 L Electric Kettle : http://amzn.to/2A1FDtG 
3. Prestige PKGSS 1.7 1500-Watt Electric Kettle : http://amzn.to/2xx53NV
4. Pigeon Kessel 12173 1.2-Litre Multi-purpose Kettle (Silver) : http://amzn.to/2xwlzOq

5. Prestige PKOSS 1.2-Litre Electric Kettle (Silver) : http://amzn.to/2zZgZtJ

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