Skip to main content

5 Best 1.5 Ton 5 Star Window AC



Today I discuss about list of 5 best 5 Star 1.5 Ton Window AC for home. Those are power consuming and in your budget. I also discuss those features and specifications. 


1. Voltas 1.5 Ton 5 Star Window AC :-

Voltas 1.5 Ton Window AC comes with white color body and its built quality is good. It also has copper condenser so, it is long lasting. It is easily feet in your window and keeps cool your room for a long time. It has lots of features like auto swing, sleep mode and many more. It also has intelligent dehumidification function which prevents damp during rainy days.  It also has Inbuilt Anti Dust Filter so; it can protect your room from dust and gives you fresh and cool air. Its energy rating is 5 stars and consuming very low electricity so; it will save your electricity bill.





2. Carrier 18K Estrella Premium Window AC :-

Carrier 18K Estrella Premium Window AC comes with white color body and its built quality is good with copper condenser .This Window AC comes with 1.5 ton capacity and its Energy Rating is 5 Star. Its Voltage capacity has 230 Volts and Wattage capacity has 1560 Watts. It has advanced energy saving function which shuts off the fan motor when the compressor is switched off. It also has dust filter, electrostatic filter, carbon filter and zeolite filter.



3. Blue Star 5W18GA Window AC :-

Blue Star 5W18GA Window AC comes with white color body and its built quality is good. This Window AC comes with 1.5 ton capacity and its Energy Rating is 5 Star with copper condenser. Its Voltage capacity is 230 Volts and Wattage capacity is 1505 Watts. It has long distance blower for its multi-fan speed.  It has lots of features like Sleep mode, auto mode, heat mode, dry mode and fan mode.




4. Whirlpool 1.5 Ton 5 Star Window AC :-

Whirlpool Window AC comes with white color body and its built quality is very good. It also has copper condenser which performs for a long time and consume low power. This AC capacity is 1.5 ton and its Energy Rating is 5 Star. It Voltage capacity has 230 Volts. It provides Instant comfort with super-fast cooling,






5. LG LWA5CS5A L-Crescent Plus Window AC :-

This LG Window AC comes with white color body and its built quality is very good. It also has copper condenser which performs for a long time and consume low power. This Window AC comes with 1.5 ton capacity and its Energy Rating is 5 Star. It Voltage capacity has 230 Volts. It can kill the bacteria and any germs for its Special fine mesh filter. It can also keep your room comfortable for its automatic fan control and save electricity. The sleep mode timer allows you to turn on or off the AC at the sleeping time.




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