Skip to main content

5 best 1 Ton Split AC Under 30000




If you are searching for 1 Ton Split AC under Rs.30,000 , then this is the right place for you. Today I discuss about list of 5 best 1 Ton Split AC under Rs. 30000. I also discuss those features and specifications. So, let’s talk about it.

1. Voltas 123 CZA  Split AC :-


Voltas Split AC 123 CZA model comes with 1 ton capacity and white color body. It has copper condenser and its energy rating is 3 star. This is a non-inverter split ac and it is comfortable for a 120 sq ft small room size. It is easy to maintenance and energy efficient. It also comes with a LCD remote and has lots of features like auto restart, Turbo, Swing, sleep mode and timer functions.




2. Whirlpool 1 Ton 3 Star (2018) Split AC :-


Whirlpool Magicool DLX Split AC comes with 1 Ton capacity and white color body. It has Aluminum Condenser Coil and its energy rating is 3 Star. Its voltage capacity is 230 Volts and wattage capacity is 1047 Watts. It also comes with advanced MPFI Technology uses a unique circuit design for a rapid heat exchange and its cooling capacity and power saving is very good.




3. Blue Star 1 Ton 3 Star Split AC :-


This Blue Star split AC comes with Aluminum Coil Condenser with white color body. Its energy rating is 3 star. It’s save energy up to 15% compared to Non-Inverter 1 Star AC. It can cool a 10x10 size room in 10 mins. Overall the product design is very good and worked perfectly well.




4. Carrier Esko 1 Ton Split AC :-


Carrier Esko 1 ton Split AC has an energy rating of 5. It consumes 943 W power input. Its Indoor Noise is 30 dB. It has dry mode, Dehumidification mode, Turbo mode and Sleep mode. It has a LCD remote for control it. It also comes with Anti Bacteria Filter, Dust Filter, and Carbon Filter. It has R-22 refrigerant rotary compressor with copper condenser coil.




5. Godrej GSC12FG6BNG Split AC :-


This Godrej Split AC comes with black color good quality body with copper Coil Condenser. Its capacity is 1 ton and energy rating is 3 star. It also comes with refrigerant of R290 , Cu connecting kit and PFC condenser. This ac provides Turbo Mode, Sleep Mode, Dry Mode , Timer and auto restart function. It also has many other features like Catechin Filter for anti-dust and Air Swing blow function and many more.




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