arduino temperature sensor lcd display supplier
We suggest purchasing a DS18B20 sensor that comes with a wiring adapter for easy connection. The adapter has a built-in resistor, eliminating the need for a separate one in the wiring.
ArduinoGetStarted.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com, Amazon.it, Amazon.fr, Amazon.co.uk, Amazon.ca, Amazon.de, Amazon.es and Amazon.co.jp
ArduinoGetStarted.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com, Amazon.it, Amazon.fr, Amazon.co.uk, Amazon.ca, Amazon.de, Amazon.es and Amazon.co.jp
Let’s see how to interface Arduino with temperature sensor. LM35 is a three-terminal temperature sensing device. It is used to measure temperature in the range of -55°C to 150°C. It is a three-terminal device that produces an analog voltage proportional to the temperature of its surroundings. We can convert the analog output into digital using ADC. The sensitivity of LM35 is 10mV/degree Celsius it does not require any extra calibration (e.g. 300mV means 30℃). Its output is very precise. Supply voltage ranges from 4V to 30V.
Arduino is the popular open-source electronics prototyping platform based on easy-to-use hardware and software. It"s intended for Anyone - children, hobbyists,
Don’t miss popular expansion boards such as DFRduino Boards. If you are looking for inspiration, check our Arduino community for tutorials and interesting projects.
Arduino Duemilanova have come with 6 Analog to Digital Converter I/O with 10-bits resolution. In here, we going to explore on how to interface LM35 temperature sensor to Arduino and Display the output on Arduino LCD-Keypad shield.
The LM35 series are precision integrated-circuit temperature sensors, whose output voltage is linearly proportional to the Celsius (Centigrade) temperature. The LM35 does not require any external calibration or trimming to provide typical accuracies of ±1⁄4˚C at room temperature and ±3⁄4˚C over a full −55 to +150˚C temperature range. Low cost is assured by trimming and calibration at the wafer level. The LM35’s low output impedance, linear output, and precise inherent calibration make interfacing to readout or control circuitry especially easy. It can be used with single power supplies, or with plus and minus supplies. As it draws only 60 µA from its supply, it has very low self-heating, less than 0.1˚C in still air. The LM35 is rated to operate over a −55˚ to +150˚C temperature range.
Thermistors are simple, inexpensive, and accurate components that make it easy to get temperature data for your projects. Remote weather stations, home automation systems, and equipment control and protection circuits are some applications where thermistors would be ideal. They’re analog sensors, so the code is relatively simple compared to digital temperature sensors that require special libraries and lots of code.
In this article, I’ll explain how thermistors work, then I’ll show you how to set up a basic thermistor circuit with an Arduino that will output temperature readings to the serial monitor or to an LCD.
The 3-in-1 Smart Car and IOT Learning Kit from SunFounder has everything you need to learn how to master the Arduino. It includes all of the parts, wiring diagrams, code, and step-by-step instructions for 58 different robotics and internet of things projects that are super fun to build!
Thermistors are variable resistors that change their resistance with temperature. They are classified by the way their resistance responds to temperature changes. In Negative Temperature Coefficient (NTC) thermistors, resistance decreases with an increase in temperature. In Positive Temperature Coefficient (PTC) thermistors, resistance increases with an increase in temperature.
NTC thermistors are the most common, and that’s the type we’ll be using in this tutorial. NTC thermistors are made from a semiconducting material (such as a metal oxide or ceramic) that’s been heated and compressed to form a temperature sensitive conducting material.
The conducting material contains charge carriers that allow current to flow through it. High temperatures cause the semiconducting material to release more charge carriers. In NTC thermistors made from ferric oxide, electrons are the charge carriers. In nickel oxide NTC thermistors, the charge carriers are electron holes.
Since the thermistor is a variable resistor, we’ll need to measure the resistance before we can calculate the temperature. However, the Arduino can’t measure resistance directly, it can only measure voltage.
The Arduino will measure the voltage at a point between the thermistor and a known resistor. This is known as a voltage divider. The equation for a voltage divider is:
The manufacturer of the thermistor might tell you it’s resistance, but if not, you can use a multimeter to find out. If you don’t have a multimeter, you can make an Ohm meter with your Arduino by following our Arduino Ohm Meter tutorial. You only need to know the magnitude of your thermistor. For example, if your thermistor resistance is 34,000 Ohms, it is a 10K thermistor. If it’s 340,000 Ohms, it’s a 100K thermsitor.
To output the temperature readings to a 16X2 LCD, follow our tutorial, How to Set Up an LCD Display on an Arduino, then upload this code to the board:
celsius = map(((analogRead(A0) - 20) * 3.04), 0, 1023, -40, 125);//map to obtain temperature mathematically.Meaning 0 = -40degrees and 1023 = 125degrees
But i don"t know how to combine the lcd and dht22 so i can watch temperature and humidity on lcd instead monitor. If i had some code or schematic help i would do it easy, but i"m very bad at code.
I would not expect Arduino members to have an extensive technical knowledge. But a good strategy for "wiring up" a project is to follow the wire colour scheme and breadboard x,y locations.
The Grove - Temperature Sensor uses a Thermistor to detect the ambient temperature. The resistance of a thermistor will increase when the ambient temperature decreases. It"s this characteristic that we use to calculate the ambient temperature. The detectable range of this sensor is -40 - 125ºC, and the accuracy is ±1.5ºC
With the SenseCAP S2110 controller and S2100 data logger, you can easily turn the Grove into a LoRaWAN® sensor. Seeed not only helps you with prototyping but also offers you the possibility to expand your project with the SenseCAP series of robust industrial sensors.
SenseCAP S210x series industrial sensors provide an out-of-box experience for environmental sensing. Please refer to the S2101 Wireless Temperature and Humidity Sensor with higher performance and robustness for air quality monitoring. The series includes sensors for soil moisture, air temperature and humidity, light intensity, CO2, EC, and an 8-in-1 weather station. Try the latest SenseCAP S210x for your next successful industrial project.
The platforms mentioned above as supported is/are an indication of the module"s software or theoritical compatibility. We only provide software library or code examples for Arduino platform in most cases. It is not possible to provide software library / demo code for all possible MCU platforms. Hence, users have to write their own software library.
Step 1. Launch Arduino IDE and click File>New to open a new page. Copy the following code into the new page and upload. If you do not know how to upload the code, please check How to upload code.
Step 2. Open the Serial Monitor of Arduino IDE by click Tool-> Serial Monitor. Or tap the Ctrl+Shift+M key at the same time. if every thing goes well, you will get the temperature.
Hi guys welcome to this tutorial. Today we will be building a simple temperature monitor using the DS18B20 sensor with a Nokia 5110 LCD Display and an Arduino mega.
The DS18B20 digital temperature sensor gives a 9-bit to 12-bit Celsius temperature readings and also has an alarm function with nonvolatile user-programmable upper and lower trigger points. The sensor communicates via the 1-Wire communication protocol and thus by definition requires only one data line (and ground) for communication with a central microprocessor. Among the special features of this sensor, is an operational mode in which it can derive power directly from the data line (“parasite power”), eliminating the need for an external power supply line.
Each DS18B20 has a unique 64-bit serial code, which allows multiple DS18B20s to work on the same 1-Wire bus. Thus, it is simple to use one micro-controller to control many DS18B20s distributed over a large area. Some applications that can benefit from this capability include HVAC systems, temperature monitoring systems inside buildings, equipment, or machines, and process monitoring and control systems.
The Nokia 5110 was used to provide a feedback on the temperature values to the user but the Arduino serial monitor may also be used for those who do not have the display and the code for this is also included.
The first library is the one-wire Arduino library. The one-wire Arduino Library allows one-wire enabled devices to communicate over the one-wire protocol with Arduino microcontrollers. On the 1-wire network which is also referred to as a “MicroLan” (trademark), a single “master” device communicates with one or more 1-Wire “slave” devices over a single data line, with an added perk of the same data line serving as power line for the sensor in a mode known as “parasitic” Mode. This means that we can connect multiple DS18B20 temperature sensor on the same Arduino pin (saving a whole lot of IOs).
The first one (SerialTemperature.ino) displays the data over the Arduino serial monitor so that people who do not have the Nokia 5110 LCD display can also follow the tutorial by viewing the temperature data via the serial communication port.
With this done, we then move to the setup function and startup the serial monitor with 9600 as the baud rate and also issue the command sensors.begin, which starts up communication with the temperature sensor via 1-wire.
Next we go into the void loop function. The void loop function contains three main lines. The first line reads the temperature from the temperature sensor. using the sensor.requestTemperatures() function. After this, the temperature in degrees Celsius is acquired using the second line. The index “0” is what needs to be changed to either 1 or 2 or N when you have multiple sensors on the 1-wire line.
With the temperature in Celsius gotten, the next line of code then obtains the temperature in Fahrenheit and its all then formatted to be nicely displayed by the printTemperature() function.
There are two sides to the code for this. The first one is the temperatureIcon.c file which is essentially the binary data representing the Icon that was used on the LCD.
With this done, we then proceed to the setup function where we, initialized the LCD, set its display font and then start communication with the sensor.
Setup all done? we then move to the Loop section. The first function in the loop section clears the LCD screen, after which the Icon is drawn using the draw bitmap function. After the bitmap is drawn, then the all familiar functions to read the temperature both in Celsius and Farenheit and display on the LCD.
That’s it guys, you know the drill. Copy and paste in the Arduino IDE and upload to your board. You should see an output like what is in the Image below.
UM24 is a multifunctional USB test meter.It can test and display voltage/current/power/capacity/energy detection,fast charging identification,data storage, etc.
The product is displayed in a 1602 LCD blue screen. It integrates clocks, alarms, and alerts. It can also display temperature and humidity synchronously. It can be embedded in the chassis. The board contains 1302 chip to...
This product is a 18650 battery capacity tester, which is specially used to measure the capacity of 18650 batteries. The 1.77-inch TFT display can simultaneously display information such as battery internal ...
Battery Capacity Monitor, 12V 24V 36V 48V 60V 72V Battery Meter, Battery Voltage Temperature Gauge Indicator with Temperature Sensor and Buzzer Alarm for RV Motor Boat Golf Cart Motorcycle
This battery meter has an external temperature probe, which can be used as a temperature sensor. There is a buzzer inside the product, which can realize high pressure/low pressure/over temperature alar...
It is a 2.0 inch TFT display module.TFT liquid crystal has a semiconductor switch for each pixel,and each pixel can be directly controlled by dot pulses,so each node is relatively independent and can be continuous...
It is a multifunctional measuring instrument.It can measure the power,current,voltage,and temperature of the electrical appliances connected to it,and clearly see the electricity consumption.
It is a multi-function display instrument.It can simultaneously measure and display 6 parameters such as AC voltage,AC current,active power,power factor,frequency and electric energy.
{"id":4795785936967,"title":"AC 260V 100A Digital LCD Panel Volt AMP Meter Power Energy Ammeter Voltmeter","handle":"ac-260v-100a-digital-lcd-panel-volt-amp-meter-power-energy-ammeter-voltmeter","description":"\u003cspan lang=\"en\"\u003e\u003cspan lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003e\u003cstrong\u003eDescription\u003c\/strong\u003e\u003cbr\u003e\u003cstrong\u003eA Function\u003c\/strong\u003e\u003cbr\u003e\u003c\/span\u003e\u003c\/span\u003e\u003c\/span\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003eElectrical parameter measurement function (voltage, current, active power, energy)\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003eOverload alarm function (over power alarm threshold, backlight and power flashing to alarm).\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003ePower alarm threshold preset function (can set power alarm threshold).\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003eReset energy function.\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003eStore data when power off.\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003eSTN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003e Backlight function.\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cspan lang=\"en\"\u003e\u003cspan lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003e\u003cstrong\u003eB. Appearance and Key function\u003c\/strong\u003e\u003cbr\u003e\u003c\/span\u003e\u003c\/span\u003e\u003c\/span\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003eDisplay Interface\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003eThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003c\/ul\u003e\n\u003cspan lang=\"en\"\u003e\u003cspan lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003e\u003cstrong\u003eII.Display format\u003c\/strong\u003e\u003cbr\u003e\u003c\/span\u003e\u003c\/span\u003e\u003c\/span\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003ePower: test range: 0~22kW\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003ewithin 1KW, the display format is 0.0~999.9W;\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the rated power.\n3. Wiring order can’t be wrong.\nD. Specification parameters\n1. Working voltage: 80 ~ 260VAC\n2. Test voltage: 80 ~ 260VAC\n3. Rated power: 22kW\n4. Operating frequency: 45-65Hz\n5. Measurement accuracy: 1.0 grade \n\nPackage Included:\n1PC*\"\u003e1KW and above, the display format is 1000~9999W;\u003c\/span\u003e\u003c\/span\u003e\u003c\/li\u003e\n\u003cli\u003e\u003cspan id=\"result_box\" lang=\"en\"\u003e\u003cspan title=\"Description\nA Function\n1. Electrical parameter measurement function (voltage, current, active power, energy)\n2. Overload alarm function (over power alarm threshold, backlight and power flashing to alarm).\n3. Power alarm threshold preset function (can set power alarm threshold).\n4. Reset energy function.\n5. Store data when power off.\n6. STN whole viewing angleLCD (display voltage, current, active power\/energy at the same time)\n7. Backlight function.\nB. Appearance and Key function\nI. Display Interface\nThe large-screen STN whole viewing angle LCD can display voltage, current, power, energy at the same time.(note: power and energy display can be switched by the key.)\nII.Display format\n\n1.Power: test range: 0~22kW\nwithin 1KW, the display format is 0.0~999.9W;\n1KW and above, the display format is 1000~9999W;\n10kw and above, the display format is 10.0~22.0kW\n2.Energy: test range: 0~9999kWh\nWithin 10KWh, the display format is 0~9999Wh;\n10kWh and above, the display format is 10~9999kWh;\nOver 9999kwh will return 0\n3. Voltage: test range: 80~260V\nDisplay format: 80~260V\n4. Current: test range: 0~100A\nDisplay format: 0.00~99.99A\nIII. Key\n1. Backlight control\nShort press the key to turn on or off the backlight, the backlight has memory function, it can store the on or off state when power off.\n2. Reset energy\nStep1: Long press the key at least3 seconds until the number in energy display area flash, then release the key.\nStep2: If short press the key again, then the energy value is cleared and exit the reset state.If short press the key again, then the energy value will not be cleared and will exit the reset state. If there is no operation on the key within 10 seconds, the energy value will not be cleared and will exit the reset state.\n3. Set power alarm threshold\nStep1: Long press the key at least 3 seconds until the number in power display area flash,then release the key\nStep2: Powerarea display the current power alarm value and the last digit begin to flash, then you can short press the key to plus 1, short press the key can switch the digit which you want to set. The threshold can’t be over 25kw( note: the default value is 25kw)\n\nStep3: After finish the setting, long press the key over 3 seconds or there is no operation over 10 seconds, it will store data automatically and exit the set state.\n4. Power\/Energy switch\nYou can short press the key to switch display the power\/ energy, the display state will be store when power off.\nC. Precautions\n1. This module is suitable for indoor, please do not use outdoor.\n2. Applied load should not exceed the ra