lcd display arduino datasheet brands
If you’ve ever tried to connect an LCD display to an Arduino, you might have noticed that it consumes a lot of pins on the Arduino. Even in 4-bit mode, the Arduino still requires a total of seven connections – which is half of the Arduino’s available digital I/O pins.
The solution is to use an I2C LCD display. It consumes only two I/O pins that are not even part of the set of digital I/O pins and can be shared with other I2C devices as well.
True to their name, these LCDs are ideal for displaying only text/characters. A 16×2 character LCD, for example, has an LED backlight and can display 32 ASCII characters in two rows of 16 characters each.
If you look closely you can see tiny rectangles for each character on the display and the pixels that make up a character. Each of these rectangles is a grid of 5×8 pixels.
At the heart of the adapter is an 8-bit I/O expander chip – PCF8574. This chip converts the I2C data from an Arduino into the parallel data required for an LCD display.
If you are using multiple devices on the same I2C bus, you may need to set a different I2C address for the LCD adapter so that it does not conflict with another I2C device.
An important point here is that several companies manufacture the same PCF8574 chip, Texas Instruments and NXP Semiconductors, to name a few. And the I2C address of your LCD depends on the chip manufacturer.
According to the Texas Instruments’ datasheet, the three address selection bits (A0, A1 and A2) are placed at the end of the 7-bit I2C address register.
According to the NXP Semiconductors’ datasheet, the three address selection bits (A0, A1 and A2) are also placed at the end of the 7-bit I2C address register. But the other bits in the address register are different.
So your LCD probably has a default I2C address 0x27Hex or 0x3FHex. However it is recommended that you find out the actual I2C address of the LCD before using it.
Connecting an I2C LCD is much easier than connecting a standard LCD. You only need to connect 4 pins instead of 12. Start by connecting the VCC pin to the 5V output on the Arduino and GND to ground.
Now we are left with the pins which are used for I2C communication. Note that each Arduino board has different I2C pins that must be connected accordingly. On Arduino boards with the R3 layout, the SDA (data line) and SCL (clock line) are on the pin headers close to the AREF pin. They are also known as A5 (SCL) and A4 (SDA).
After wiring up the LCD you’ll need to adjust the contrast of the display. On the I2C module you will find a potentiometer that you can rotate with a small screwdriver.
Plug in the Arduino’s USB connector to power the LCD. You will see the backlight lit up. Now as you turn the knob on the potentiometer, you will start to see the first row of rectangles. If that happens, Congratulations! Your LCD is working fine.
To drive an I2C LCD you must first install a library called LiquidCrystal_I2C. This library is an enhanced version of the LiquidCrystal library that comes with your Arduino IDE.
The I2C address of your LCD depends on the manufacturer, as mentioned earlier. If your LCD has a Texas Instruments’ PCF8574 chip, its default I2C address is 0x27Hex. If your LCD has NXP Semiconductors’ PCF8574 chip, its default I2C address is 0x3FHex.
So your LCD probably has I2C address 0x27Hex or 0x3FHex. However it is recommended that you find out the actual I2C address of the LCD before using it. Luckily there’s an easy way to do this, thanks to the Nick Gammon.
But, before you proceed to upload the sketch, you need to make a small change to make it work for you. You must pass the I2C address of your LCD and the dimensions of the display to the constructor of the LiquidCrystal_I2C class. If you are using a 16×2 character LCD, pass the 16 and 2; If you’re using a 20×4 LCD, pass 20 and 4. You got the point!
First of all an object of LiquidCrystal_I2C class is created. This object takes three parameters LiquidCrystal_I2C(address, columns, rows). This is where you need to enter the address you found earlier, and the dimensions of the display.
In ‘setup’ we call three functions. The first function is init(). It initializes the LCD object. The second function is clear(). This clears the LCD screen and moves the cursor to the top left corner. And third, the backlight() function turns on the LCD backlight.
After that we set the cursor position to the third column of the first row by calling the function lcd.setCursor(2, 0). The cursor position specifies the location where you want the new text to be displayed on the LCD. The upper left corner is assumed to be col=0, row=0.
There are some useful functions you can use with LiquidCrystal_I2C objects. Some of them are listed below:lcd.home() function is used to position the cursor in the upper-left of the LCD without clearing the display.
lcd.scrollDisplayRight() function scrolls the contents of the display one space to the right. If you want the text to scroll continuously, you have to use this function inside a for loop.
lcd.scrollDisplayLeft() function scrolls the contents of the display one space to the left. Similar to above function, use this inside a for loop for continuous scrolling.
If you find the characters on the display dull and boring, you can create your own custom characters (glyphs) and symbols for your LCD. They are extremely useful when you want to display a character that is not part of the standard ASCII character set.
CGROM is used to store all permanent fonts that are displayed using their ASCII codes. For example, if we send 0x41 to the LCD, the letter ‘A’ will be printed on the display.
CGRAM is another memory used to store user defined characters. This RAM is limited to 64 bytes. For a 5×8 pixel based LCD, only 8 user-defined characters can be stored in CGRAM. And for 5×10 pixel based LCD only 4 user-defined characters can be stored.
Creating custom characters has never been easier! We have created a small application called Custom Character Generator. Can you see the blue grid below? You can click on any 5×8 pixel to set/clear that particular pixel. And as you click, the code for the character is generated next to the grid. This code can be used directly in your Arduino sketch.
After the library is included and the LCD object is created, custom character arrays are defined. The array consists of 8 bytes, each byte representing a row of a 5×8 LED matrix. In this sketch, eight custom characters have been created.
We come across Liquid Crystal Display (LCD) displays everywhere around us. Computers, calculators, television sets, mobile phones, and digital watches use some kind of display to display the time.
An LCD screen is an electronic display module that uses liquid crystal to produce a visible image. The 16×2 LCD display is a very basic module commonly used in DIYs and circuits. The 16×2 translates a display of 16 characters per line in 2 such lines. In this LCD, each character is displayed in a 5×7 pixel matrix.
Contrast adjustment; the best way is to use a variable resistor such as a potentiometer. The output of the potentiometer is connected to this pin. Rotate the potentiometer knob forward and backward to adjust the LCD contrast.
A 16X2 LCD has two registers, namely, command and data. The register select is used to switch from one register to other. RS=0 for the command register, whereas RS=1 for the data register.
Command Register: The command register stores the command instructions given to the LCD. A command is an instruction given to an LCD to do a predefined task. Examples like:
Data Register: The data register stores the data to be displayed on the LCD. The data is the ASCII value of the character to be displayed on the LCD. When we send data to LCD, it goes to the data register and is processed there. When RS=1, the data register is selected.
Generating custom characters on LCD is not very hard. It requires knowledge about the custom-generated random access memory (CG-RAM) of the LCD and the LCD chip controller. Most LCDs contain a Hitachi HD4478 controller.
CG-RAM address starts from 0x40 (Hexadecimal) or 64 in decimal. We can generate custom characters at these addresses. Once we generate our characters at these addresses, we can print them by just sending commands to the LCD. Character addresses and printing commands are below.
LCD modules are very important in many Arduino-based embedded system designs to improve the user interface of the system. Interfacing with Arduino gives the programmer more freedom to customize the code easily. Any cost-effective Arduino board, a 16X2 character LCD display, jumper wires, and a breadboard are sufficient enough to build the circuit. The interfacing of Arduino to LCD display is below.
The combination of an LCD and Arduino yields several projects, the most simple one being LCD to display the LED brightness. All we need for this circuit is an LCD, Arduino, breadboard, a resistor, potentiometer, LED, and some jumper cables. The circuit connections are below.
The 1.8inch LCD uses the PH2.0 8PIN interface, which can be connected to the Raspberry Pi according to the above table: (Please connect according to the pin definition table. The color of the wiring in the picture is for reference only, and the actual color shall prevail.)
ST7735S is a 132*162 pixel LCD, and this product is a 128*160 pixel LCD, so some processing has been done on the display: the display starts from the second pixel in the horizontal direction, and the first pixel in the vertical direction. Start to display, so as to ensure that the position corresponding to the RAM in the LCD is consistent with the actual position when displayed.
The LCD supports 12-bit, 16-bit and 18-bit input color formats per pixel, namely RGB444, RGB565, RGB666 three color formats, this routine uses RGB565 color format, which is also a commonly used RGB format
Note: Different from the traditional SPI protocol, the data line from the slave to the master is hidden since the device only has display requirement.
Framebuffer uses a video output device to drive a video display device from a memory buffer containing complete frame data. Simply put, a memory area is used to store the display content, and the display content can be changed by changing the data in the memory.
If you need to draw pictures, or display Chinese and English characters, we provide some basic functions here about some graphics processing in the directory RaspberryPi\c\lib\GUI\GUI_Paint.c(.h).
Set points of the display position and color in the buffer: here is the core GUI function, processing points display position and color in the buffer.
The fill color of a certain window in the image buffer: the image buffer part of the window filled with a certain color, usually used to fresh the screen into blank, often used for time display, fresh the last second of the screen.
Display time: in the image buffer,use (Xstart Ystart) as the left vertex, display time,you can choose Ascii visual character font, font foreground color, font background color.;
2. The module_init() function is automatically called in the INIT () initializer on the LCD, but the module_exit() function needs to be called by itself
Python has an image library PIL official library link, it do not need to write code from the logical layer like C, can directly call to the image library for image processing. The following will take 1.54inch LCD as an example, we provide a brief description for the demo.
Note: Each character library contains different characters; If some characters cannot be displayed, it is recommended that you can refer to the encoding set ro used.
The demo is developed based on the HAL library. Download the demo, find the STM32 program file directory, and open the LCD_demo.uvprojx in the STM32\STM32F103RBT6\MDK-ARM directory to check the program.
For the screen, if you need to draw pictures, display Chinese and English characters, display pictures, etc., you can use the upper application to do, and we provide some basic functions here about some graphics processing in the directory STM32\STM32F103RB\User\GUI_DEV\GUI_Paint.c(.h)
Image buffer part of the window filling color: the image buffer part of the window filled with a certain color, generally as a window whitewashing function, often used for time display, whitewashing on a second
Display time: in the image buffer,use (Xstart Ystart) as the left vertex, display time,you can choose Ascii visual character font, font foreground color, font background color.
image.cpp(.h): is the image data, which can convert any BMP image into a 16-bit true color image array through Img2Lcd (downloadable in the development data).
For the screen, if you need to draw pictures, display Chinese and English characters, display pictures, etc., you can use the upper application to do, and we provide some basic functions here about some graphics processing in the directory GUI_Paint.c(.h)
Display time: in the image buffer,use (Xstart Ystart) as the left vertex, display time,you can choose Ascii visual character font, font foreground color, font background color.
16×2 LCD is named so because; it has 16 Columns and 2 Rows. There are a lot of combinations available like, 8×1, 8×2, 10×2, 16×1, etc. But the most used one is the 16*2 LCD, hence we are using it here.
All the above mentioned LCD display will have 16 Pins and the programming approach is also the same and hence the choice is left to you. Below is the Pinout and Pin Description of 16x2 LCD Module:
These black circles consist of an interface IC and its associated components to help us use this LCD with the MCU. Because our LCD is a 16*2 Dot matrix LCD and so it will have (16*2=32) 32 characters in total and each character will be made of 5*8 Pixel Dots. A Single character with all its Pixels enabled is shown in the below picture.
So Now, we know that each character has (5*8=40) 40 Pixels and for 32 Characters we will have (32*40) 1280 Pixels. Further, the LCD should also be instructed about the Position of the Pixels.
It will be a hectic task to handle everything with the help of MCU, hence an Interface IC like HD44780 is used, which is mounted on LCD Module itself. The function of this IC is to get the Commands and Data from the MCU and process them to display meaningful information onto our LCD Screen.
The LCD can work in two different modes, namely the 4-bit mode and the 8-bit mode. In 4 bit mode we send the data nibble by nibble, first upper nibble and then lower nibble. For those of you who don’t know what a nibble is: a nibble is a group of four bits, so the lower four bits (D0-D3) of a byte form the lower nibble while the upper four bits (D4-D7) of a byte form the higher nibble. This enables us to send 8 bit data.
As said, the LCD itself consists of an Interface IC. The MCU can either read or write to this interface IC. Most of the times we will be just writing to the IC, since reading will make it more complex and such scenarios are very rare. Information like position of cursor, status completion interrupts etc. can be read if required, but it is out of the scope of this tutorial.
The Interface IC present in most of the LCD is HD44780U,in order to program our LCD we should learn the complete datasheet of the IC. The datasheet is given here.
There are some preset commands instructions in LCD, which we need to send to LCD through some microcontroller. Some important command instructions are given below:
{"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