arduino lcd display datasheet brands
Most widgets could benefit from a shiny touchscreen interface. Unfortunately, it"s usually not easy to hook up a touchscreen and driving a display is often too taxing on your controller. 4D Systems has solved this problem by creating a series of touchscreens with on-board controllers then combining them with adapters for popular platforms like Raspberry Pi and Arduino!
The Arduino Display Module customizes the uLCD-32-PTU Display specifically for interfacing with the Arduino, to provide a quick and easy interface without any wiring hassles. It enables you to quickly connect the 4D Arduino Adapter Shield to their Arduino, connect the 5 way cable between the Adapter and the Display Module, and be connected in seconds to start programming!
The uLCD-32-PTU-AR has a comprehensive range of serial commands ready to be received from the Arduino, to draw primitives such as lines, rectangles, circles and text, displaying images, playing sound and logging data to uSD card. You can also use the Visi-Genie in Workshop 4 combined with the Arduino Library to create a graphical interface in minutes!
Like the other displays from 4D Systems you will need a USB Serial adapter to program this module. Unfortunately, our FTDI Basic Breakout won"t work. Check the Recommended Items section below for 4D Systems" µUSB-PA5.
Liquid Crystal displays or LCDs have been used in electronics equipment since the late 1970s. LCD displays have the advantage of consuming very little current And they are ideal for your Arduino projects.
In this article and in the accompanying video I’ll show you how easy it is to add an LCD display to your next Arduino design. I’ll also show you a very popular Arduino Shield that has a keypad which you can use in your projects as well.
Today LCD displays are used in a variety of items from test equipment to televisions. They’re inexpensive and versatile, this makes them ideal for all sorts of designs.
LCD displays do not emit light. Instead they block the passage of light, like little windows which open and shut the let light through. The liquid crystals used inside LCD displays are sandwiched between two layers of polarized material. By changing the orientation of the liquid crystals they allow light to pass or they block the light entirely.
Because transmissive LCD displays (the type we will be using) work by blocking light they require a backlight. Several methods have been used to create back lights including electroluminescent panels and fluorescent tubes. these days the most common form of backlight is an LED, in fact so-called LED televisions are usually just LCD screens with an LED backlight system.
Another type of LCD display, the passive-matrix display, does not require a backlight, it works using reflected light. This type of display is often found in digital watches.
The principles of liquid crystals were discovered in the late 1880s but work on Modern LCD displays did not begin until the mid-1960s. a number of patents were filed in the early 1970s and in 1973 the Sharp Corporation introduced LCD displays for calculators.
The first color LCD displays were developed in the early 1980s but production units were not commonly available until the mid-1990s. By the late 1990s LCD displays were quite common.
A number of LCD displays are available for experimenters. These low-cost monochrome displays are ideal for use with microcontrollers like the Arduino and micro computers like the Raspberry Pi.
These displays are available in a number of different configurations. The part number for the display generally relates to the number of rows and columns in the display.
Common display configurations include 16 x 2, 16 x 4 and 20 x 4. All of these displays are used in a virtually identical fashion the only difference being the number of columns and rows they have.
The LCD1602 display module is a very popular and inexpensive LCD display. It is available in a number of different colors such as blue yellow and green and can easily be connected to an Arduino or Raspberry Pi.
In operation data is sent down the parallel data lines for the display. There are two types of data that can be sent to the display. The first type of data are the ASCII characters which are to be displayed on the display. The other type of data are the control characters that are used to activate the various display functions.
Brightness– This is the input for the brightness control voltage, which varies between 0 and 5 volts to control the display brightness. On some modules this pin is labeled V0.
Because the LCD module uses a parallel data input it requires 8 connections to the host microcontroller for the data alone. Add that to the other control pins and it consumes a lot of connections. On an Arduino Uno half of the I/O pins would be taken up by the display, which can be problematic if you want to use the I/O pins for other input or output devices.
We will begin our experiments by hooking up the LCD1602 to an Arduino Uno and running a few of the example sketches included with the Arduino IDE. This will allow you to get familiar with the display without needing to write any code.
We need to hookup our LCD display to our Arduino. The display can use any of the Arduino digital I/O pins as it has no special requirements, but if you hook it up as I’ve illustrated here you can run the example sketches without needing to make any modifications.
In addition to the LCD1602 display ands the Arduino Uno you will need a 10K trimpot ot potentiometer, this is used a s a brightness control for the display. You’ll also need a 220 ohm resistor to drop the voltage for the displays LED backlight.
The Arduino IDE includestheLiquidCrystallibraryand this library has a number of example sketches. I’ll go over three of them here but you can also try the other ones.
The sketch starts with a number of credits and a description of the required hardware hookup. You’ll note that this is the same hookup you just performed on your Arduino and LCD module.
We then initialize an object that we call “lcd” using the pinouts of the LCD display. If you decide to hook up your display to different pins then you’ll need to modify this section.
That ends the loop, so we start back at the top of the loop and repeat. The result will be a counter on the second line that counts seconds from the htime the Arduino was last reset.
Load the sketch up to your Arduino and observe your display. If you don’t see anything try adjusting the brightness control that you wired to the display.
The second example we will try isthe Scroll sketch. Scrolling is a useful technique when you can’t get your text to fit on one line of the LCD display.
In the loop the code demonstrates the use of thescrollDisplayLeftandscrollDisplayRightfunctions. As their names imply they move the text in a left or right direction.
Finally the last counter moves the text 16 positions to the left again, which will restore it back to the center of the display. The loop then repeats itself.
Custom characters are useful when you want to display a character that is not part of the standard 127-character ASCII character set. Thi scan be useful for creating custom displays for your project.
A character on the display is formed in a 5 x 8 matrix of blocks so you need to define your custom character within that matrix. To define the character you’ll use thecreateCharfunctionof the LiquidCrystal library. You are limited to defining a maximum of eight characters.
The Custom Character demonstration requires one additional component to be wired to the Arduino, a potentiometer (10K or greater) wired up to deliver a variable voltage to analog input pin A0.
As with the previous sketches we examined this one starts by loading theLiquidCrystallibrary and defining an object calledlcdwith the connection information for the display. It then moves on to define the custom characters.
The last two arrays,amsUpandarmsDowndefine the shape of a little “stickman”, or “stickperson” if you want to be politically correct! This is done to show how we can animate a character on the display.
Finally the setup routine ends by printing a line to the first row of the LCD display. The line makes use of two of the custom characters, the “heart” and the “smiley”.
We begin by reading the value of the voltage on pin A0 using the ArduinoanalogReadfunction. As the Arduino has a 10-bit analog to digital converter this will result in a reading ranging from 0 to 1023.
We then use an Arduinomapfunction to convert this reading into a range from 200 to 1000. This value is then assigned to an integer calleddelayTime, which as its name implies represents a time delay period.
One thing you may have noticed about using the LCD display module with the Arduino is that it consumes a lot of connections. Even in 4-wire mode there are still a total of seven connections made to the Arduino digital I/O pins. As an Arduino Uno has only 14 digital I/O pins that’s half of them used up for the display.
In other cases you would need to resort to using some of the analog pins as digital pins or even moving up to an Arduino Mega which has many more I/O pins.
But there is another solution. Use the I2C bus adapter for the LCD display and connect using I2C. This only consumes two I/O pins and they aren’t even part of the set of digital I/O pins.
The bus has evolved to be used as an ideal method of communicating between microcontrollers, integrated circuits, sensors and micro computers. You can use it to allow multiple Arduinos to talk to each other, to interface numerous sensors and output devices or to facilitate communications between a Raspberry Pi and one or more Arduinos.
In I2C communications there is the concept of Master and Slave devices. There can be multiples of each but there can only be one Master at any given moment. In most Arduino applications one Arduino is designated Master permanently while the other Arduinos and peripherals are the Slaves.
The I2C Adapter for the LCD display is a tiny circuit board with 16 male header pins soldered to it. These pins are meant to be connected directly to the 16-pin connection on the LCD1602 display (or onto other displays that use the same connection scheme).
The device also has a 4-pin connector for connection to the I2C bus. In addition there is a small trimpot on the board, this is the LCD display brightness control.
Most Arduino Unos also have some dedicated pins for I2C, these are internally connected to A4 and A5 and are usually located above the 14 digital I/O pins. Some models of the Uno have additional I2C connectors as well.
Note how much easier it is to use the I2C connection, which does not consume any of the Arduino Unos 14 digital I/O pins. Since A4 and A5 are being used for the I2C bus they can’t be used as analog inputs in this configuration.
Load this sketch into your Arduino then open your serial monitor. You’ll see the I2C address of your I2C LCD display adapter. You can then make note of this address and use it in the sketches we’ll be looking at now.
In order to run the subsequent sketches you’ll need to install another library. This is theNewLiquidCrystallibrarywhich, as its name implies, is an improved version of the LiquidCrystal library packaged with your Arduino IDE.
The sketch starts by loading the ArduinoWirelibrary. This is the Arduino library that facilitates communications over I2C and it’s part of your Arduino IDE installation.
On the next line we define the connections to the LCD display module from the I2C Adapter,. Note that these are NOT the connections from the Arduino, they are the connections used by the chip on the adapter itself.
In setup we set the size of the display and then print “Hello world!” on the first line in the first position. After a short delay we print “How are you?” on the second line.
Load the sketch and run it on your Arduino. If you can’t get it to work check out the address and connection information to be sure you have it right.
As you can see the DHT22 is connected with its output tied to pin 7 of the Arduino. The other two connections are 5 volts and ground. Note that pin 3 of the DHT22 is not used.
This sketch also makes use of theDHTlibrary from Adafruit. We used this library in a previous article, “Using the HC-SR04 Ultrasonic Distance Sensor with Arduino” so you may want to take a look at that one in order to get it installed.
The key thing to note is that this library is dependant upon another Adafruit library, theirUnified Sensorlibrary. Both can be installed using the Library Manager in your Arduino IDE.
The sketch is similar to our demo sketch in that it creates an “lcd” object with the I2C and display connection information. It also defines a couple of parameters for the DHT22 sensor, as well as some floating variables to hold the temperature and humidity values.
Note that this displays the temperature in Celsius. If you want to change this to Fahrenheit its a simple matter of using some math. The formula( temp * 1.8 ) + 32will convert the results to Fahrenheit.
So far we have used the LCD1602 display module for all of our experiments. For our final demonstration we’ll switch to a popular Arduino shield that contains a LCD1602 along with some push buttons.
The LCD Keypad Shield is available from several different manufacturers. The device fits onto an Arduino Uno or an Arduino Mega and simplifies adding an LCD display to your project.
The Reset button is simply connected to the Arduino Reset pin and works just like the Reset button on the Arduino itself. This is common on many shields as the shields physically cover the Reset button.
Instead the buttons are connected to a resistor array that acts as a voltage divider. The entire array is connected to the Arduino’s analog A0 pin. One pin for five push buttons.
Note that the LCD is being used in 4-wire mode. The LCD itself is the same one used on the LCD1602 module, so all of the code for that module will work with the LCD Keypad Shield as well.
Now that you know how the LCD Keypad module works and which Arduino pins it uses all that remains is to install it onto your Arduino and load the demo sketch.
One thing – once the shield is installed on the Arduino you won’t have easy access to the unused I/O pins to connect any sensors or output devices you may want to use (although the demo sketch doesn’t need anything else connected). There are a couple of ways to get around this:
Use a shield that exposes the pins for prototyping before you install the LCD Keypad shield. In the video associated with this article I use a “Screw Shield” that brings all of the Arduino I/O pins out to a series of screw connectors. There are other similar shields. Using one of these shields is the easiest way to work with the LCD Keypad shield, as well as other Arduino shields.
The sketch begins by including theLiquidCrystallibrary. You can use the original one or the one includes with theNewLiquidCrystallibrary. We then set up an object with the LCD connections, note that these are just hard-coded as they won’t change.
Next we define a number of constants, one for each of the push buttons. Note that nothing is defined for the Reset button as it simply mimics the Arduino Reset button, however a constant is defined for the “none” condition.
After that we define a function calledread_LCD_buttons(). This function reads the value on analog port A0 and returns an integer corresponding to the button integers we defined earlier. Note that the function adds approximately 50 to each of the manufacturers specified values to account for intolerances in the resistors in the voltage divider.
We start the loop by placing the cursor 9 spaces over on the second line. We then use themillisfunction to display a counter that counts the time since the Arduino was reset. This is to test the Reset button.
We then call ourread_LCD_buttons()function and use it to display the value of the push button, right before the counter. Then we end the loop and do it again.
Load the code onto the Arduino and run it. You should see the value of each button as you press it, along with a counter that increments each second. If you press Reset the counter should reset itself back to zero.
As you can see LCD displays are pretty simple to use thanks to the availability of some excellent libraries for the Arduino. As these displays are also very inexpensive they will make an ideal addition to many of your Arduino projects.
And finally the LCD Keypad Shield is a convenient method of adding both a display and a simple keypad to your project, no wiring or soldering required.
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.
As a 2inch IPS display module with a resolution of 240 * 320, it uses an SPI interface for communication. The LCD has an internal controller with basic functions, which can be used to draw points, lines, circles, and rectangles, and display English, Chinese as well as pictures.
The 2inch 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.)
The LCD supports 12-bit, 16-bit, and 18-bit input color formats per pixel, namely RGB444, RGB565, and RGB666 three color formats, this demo uses RGB565 color format, which is also a commonly used RGB format.
For most LCD controllers, the communication mode of the controller can be configured, usually with an 8080 parallel interface, three-wire SPI, four-wire SPI, and other communication methods. This LCD uses a four-wire SPI communication interface, which can greatly save the GPIO port, and the communication speed will be faster.
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.
Referring to the LCD16020, I believe that everyone is not unfamiliar with the square shape, green color, a row of 2.54 pin header.... LCD1602 module is a product of the DFRobot Gravity I2C series, which has been greatly optimized for its original LCD1602 appearance. This module does not need to adjust the contrast, retain the backlight controllable function, and simultaneously compatible with 3.3V and 5V voltage. The optimisation of function and the appearance will bring you the different experience.
Gravity: I2C LCD1602 Arduino LCD Display Module (Blue) Click a star to leave your reviewWorst experience possibleA bad experienceA moderate experienceA satisfied experienceA very positive experience
Crystalfontz America is the leading supplier of LCD, TFT, OLED and ePaper display modules and accessories. We specialize in providing our customers the very best in display products, cables and connectors.
In addition to our large catalog of displays, we offer LCD development kits, breakout boards, cables, ZIF connectors and all of the LCD software and drivers you need to develop your product or project. We are located in the U.S. so we can get product to you fast!
{"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 r