Skip to main content

Top 10 Best Exhaust Fans in India 2017





List Of Top 10 Exhaust Fan, those are energy savings and efficient for all types of kitchens and bathrooms are below,-


1. MAA-KU EC Exhaust Fan:-

This type of exhaust fan is for Extra Small Kitchen and its size is 4.75 inches. This exhaust fan for multi-purpose use, it works as cooling fan on the front face side and it works as exhaust  fan on the reverse back face side.  It is longer lifetime than AC equivalent Energy savings due to its free stand style. You can fit this fan on both side or if you want to put this fan alone any where it stand alone without any fitting.
2. Havells Ventilair DSP 300mm Exhaust Fan :-

This fan has innovative designs and excellent finishes. These fans are high speed and specially designed for kids to dual color. This exhaust fan volts are 220 to 240 volts.
3. Havells Ventilair  Exhaust Fan with Window (White) :-

This fan is ideal for mounting on glass window. It is 150mm in diameter. It provides high qualities engineering plastic resistant to color change with anti-static properties.
4. Usha Crisp Air Premia BV 100mm Exhaust Fan (White) :-

Premia is light in weight and has noiseless blades for bathroom ventilation. This shaded pole motor design for long lasting operation. It also has rust proof body.
5. Maa Ku AC Axial Cooling Blower Exhaust Rotary Fan, (Black) :-

AC Axial fan size is 4.75 inches. This exhaust fan is good for small room.  These AC axial fans are use in multipurpose functions. These fans has free stand style.

6. Usha Crisp Air 150mm Exhaust Fan (Black) :-

This exhaust fan with automatic shutter sleek and stylish design with rust proof body and blades are noiseless and light in weight.

7. Havells Ventil Air Dx 200mm Fan (Off White) :-

Havells Ventil Air exhaust fan diameter is 200mm. This fan power capacity is 32 watts and operating voltage is 230 volts.

8. Usha Crisp Air 250mm Exhaust Fan (Pearl White) :-

This Usha exhaust fan is very light in weight with automatic shutter kindly and stylish design with rust proof body makes it performance excellent and its blades are noiseless.

9. Havells Ventilair DSP 230mm Exhaust Fan :-

It is high-quality metal body and blades that provide optimum performance. This exhaust fan is suitable for your kitchen, bathroom or toilet. It will also keep your home smelling clean when you have unexpected guests at home. This Havells exhaust fan is reduce your electricity bill too.

10. Usha Crisp Air 200mm Exhaust Fan (Pearl White) :-


This exhaust fan is light in weight with automatic shutter. It has a stylish design and rust proof body and blades are noiseless.

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