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

Obstacle Avoiding Robot Car Using Arduino - How To Make a Smart Car

How To Make Smart Robot Car With Arduino Obstacle avoiding robot car using Arduino, how to make a smart car with ultrasonic sensor, servo motor, and L298N motor driver module. Arduino UNO :- https://amzn.to/3MF9jky SG90 Servo Motor And HC-SR04 Ultrasonic Sensor :- https://amzn.to/3EX03pu LM298N motor driver module :- https://amzn.to/3y2tx3Y BO Motor with Wheel Pair :- https://amzn.to/38zFMu6 arduino smart car kit :- https://amzn.to/3kmtZlk Project Code :-  #include <Servo.h>          //Servo motor library. This is standard library #include <NewPing.h>        //Ultrasonic sensor function library. You must install this library //our L298N control pins const int LeftMotorForward = 7; const int LeftMotorBackward = 6; const int RightMotorForward = 4; const int RightMotorBackward = 5; //sensor pins #define trig_pin A1 //analog input 1 #define echo_pin A2 //analog input 2 #define maximum_distance 200 boolean goesForward = false; int distance = 100; NewPing sonar(trig_pin

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

How To Make Simple Digital Clock Using Arduino UNO Very Easy Step By Step

Digital clock using Arduino UNO , TM1637 4-digit 7 segment display and DS1307 RTC module. Here I show you how to make a simple digital clock using Arduino UNO very easily.  TM1637 4-digit 7 segment display :-  https://amzn.to/3R3KC3p DS1307 RTC module:-    https://amzn.to/3dPDfyc    Arduino UNO:- https://amzn.to/3KcNfxR Jumper Wire:-    https://amzn.to/3KcBIyH             Project Code :-  const int clock = 11; const int data = 10; uint8_t digits[] = { 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f }; void setup() { setupInterrupt(); pinMode(clock, OUTPUT); pinMode(data, OUTPUT); start(); writeValue(0x8c); stop(); write(0x00, 0x00, 0x00, 0x00); } byte tcnt2; // set current time by editing the values at line 16 and 17 unsigned long int setMinutes = 9; // set minutes unsigned long int setHours = 9; // set hours unsigned long time = (setMinutes * 60 * 1000) + (setHours * 3600 *1000); void setupInterrupt() { TIMSK2 &= ~(1<<TOIE2); TCCR2A &=