Skip to main content

5 Best Split Inverter Air Conditioner 2018




If you are searching for the best power consuming and efficient air conditioner for your home or office then this is the right place for you. Here I discuss about list of 5 best split inverter technology AC for your home and office in 2018. I also discuss those features and specifications. So, let’s talk about it.

1. Voltas DC Inverter 12V DY Inverter Split AC :-

This Voltas AC comes with white color with good sleek design body. It also comes with Inverter technology with copper condenser and capacity is 1 ton.  This AC runs smooth and its noise level is 40 dB so; you can’t feel any disturbance when sleep. It has cross flow air-vent technology so it cooling all around your room. It can filter bacterial germs, dust particles and give you fresh healthy air.

2. Godrej 1.5 Ton 3 Star Inverter Split AC :-

Godrej Eon split AC comes with Inverter technology and its capacity is 1.5 ton. Its energy rating is 3 star and it is energy efficient with easy maintenance. It condenser type is 100% copper so it is log lasting. It has sleep, dry and turbo modes.  This AC cooling all around your room very quickly and filter the dust particles and give you fresh cool air.

3. Samsung 1.5 Ton 5 Star Inverter Split AC :-

This Samsung split AC comes with 1.5 ton capacity with digital 8 Pole inverter technology.  Its energy rating is 5 star. It has single user mode and anti – corrosion by durafin. The indoor part provides digital display operated by remote controller and powerful air throws so that it will cool all around your room very quickly. It also has 3 care filter technology which filter dust particle, bacterial germs and gives you fresh air. This Samsung AC also protect from voltage fluctuation. It has cool, dry, fan and sleep mode.

4. LG 1 Ton 3 Star Inverter Split AC :-

This LG split AC comes with white color and has smart inverter technology. Its energy rating is 3 star. It performs very smoothly and its noise level is very low only 29dB. So you can get a deep sleep at night.  This AC provides fast cooling facility and circulates air all around the room. It comes with compressor warranty of 10 years. It also has Alloy condenser and cools down around 140 sq feet bedroom in 7-8 mins. Even it has mosquito away functionality but you have to pay extra charges for it.


5. Mitsubishi Inverter Cooling Split AC :-

 This Mitsubish split AC comes with 1.5 ton capacity with white color body. It has copper condenser and coil. It also has inverter technology which consumes less energy. It is super quite, noise level 49dB and automatically controlled by a remote controller. It can protect your room from any dust particle and bacterial germs and give you fresh air. This AC cooling all around your room 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.   ...