Skip to main content

Top 5 Inverter Ac In India 2019 | Best 5 Air Conditioner Under 50000



Here I discuss about list of 5 best split AC with inverter technology on Amazon. So you can choose your best AC brand for your home in this summer.


1. Voltas 5 Star Inverter Split AC -

Voltas Inverter split AC comes with white colour body with copper condenser. This product also comes with variable speed compressor which adjusts power depending on heat load. Its capacity power has 1.5 Ton and it is suitable for medium sized rooms (111 to 150 sq ft). This AC comes with 5 star energy rating and also has Inverter technology so it is most energy efficient and save your electricity bill. It also has antibacterial filter; dust filter and air purifier. This product also comes with 1 year warranty on product, 1 year warranty on condenser and 5 years warranty on compressor. So, it is very good product for your medium size room.

2. Carrier 1.5 Ton 5 Star Inverter Split AC -

Carrier 5 star inverter split AC comes with white colour body and its capacity power has 1.5 ton so, it is suitable for medium sized rooms like 111 to 150 sq ft. This product also comes with variable speed compressor which adjusts power depending on heat load. This AC comes with inverter technology so it is energy efficient. Its voltage capacity has 230 volt. It comes with copper condenser coil so it gives you better cooling experience with low maintenance cost. This product also comes with 1 year warranty on product, 1 year warranty on condenser and 10 years warranty on compressor. So, it is comfortable product for your family.




3. LG 1.5 Ton 5 Star Inverter Split AC -  

LG  5 star inverter split AC comes with copper condenser so it’s gives you better cooling experience with low maintenance. It also comes with inverter technology with 5 stars rating so, it is most energy efficient and save your electricity bill. It provides very low noise during operation. Its capacity has 1.5 ton and suitable for medium sized rooms like 111 to 150 sq ft. This product also comes with 1 year warranty on comprehensive and 10 years warranty on compressor with gas charging. So, it is comfortable product for your family.

4. Samsung 1.5 Ton 3 Star Inverter Split AC -

This Samsung split ac comes with white colour body with 1.5 ton capacity and its energy rating is 3 stars. It is suitable for medium sized rooms. This product comes with alloy condenser coil which is gives you more cooling experience and also company gives you 5 year warranty on condenser and 10 years warranty on compressor. This Samsung inverter split AC is most energy efficient for its own inverter technology. Its voltage capacity has 240 volt. It has quick and easy clean filter and get fast and stay cool without direct. So, it is very nice product for your medium sized room.


5. Hitachi 1.5 Ton 5 Star Inverter Split AC -

Hitachi 5 Star Inverter Split AC comes with copper condenser coil that can give you better cooling experience for your room. Its capacity power has 1.5 ton and it is suitable for medium sized rooms like 111 to 150 sq ft. This product also comes with 1 year warranty on product, 1 year warranty on condenser and 5 years warranty on compressor. It provides R410A refrigerant gas. This ac also     comes with ISEER Value of 4.7. So, it is energy efficient and comfortable for your medium size room. Now enjoy good health in every breath. 



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