Velun Tong Touch Screen EBPro Software Knowledge Points(1-17)

Create Date: 2024-8-30 12:03:23|Source: Weinview

1. Background color:

Right-click on the blank space of the window, select Properties, Pop-up Settings, and select a color in the background;

Hatch: In the background, tick the fill, select the pattern color and pattern.

2. Picture/Background Image:

Select the image symbol, select the gallery, pop up the image management window, select the Add Image button in the upper right corner of the project file, click the Add button in the lower right corner in the new status, and select the image on the computer.

3. Add text:

Click on the text element, enter the content, and then adjust the font, color, font size, whether italic, whether it is underlined, whether it flashes, and whether it needs to be moved according to the requirements of the question.

4. Real-time data (temperature, humidity, light) value display (test program in PLC):

Numerical display: click on the numerical component to add; Address setting method: obtain temperature setting address as VD6 (32-bit float) input 2 digits before and after the decimal point, add PLC name to select Siemens S7-200, obtain humidity address as VD10 (32-bit float) enter 2 digits before and after the decimal point, obtain lighting address as VW4 (16-bit Unsigned), enter 4 digits before the decimal point, enter 0 digits after the decimal point; The numerical value is displayed with a background image (default), and the use of vector image option can be unchecked in the picture according to the requirements of the question, and the background image is not used; In Font, select Chinese font for font.

Trend chart display: first add a new data sampling, select VW4 as the data source, add 3 channels, the data types are 16-bit Unsigned, 32-bit float, 32-bit float, and then set the background color and XY distance of the trend chart in the trend chart element, and check the channel in the channel, set the channel color, thickness, maximum value and minimum value.

5. Display the current time with the watch hand:

Hour hand: click on the watch hand element, read the address selection system register LW-9019 (16-bit Unsigned), in the appearance, the angle is set according to the requirements of the problem; Tick marker: choose to use the scale, select the color, enter 12 for the main marker, enter 4 for the secondary marker, and set the length according to the requirements of the question; Pointer: Set the shape, frame, and inner color of the pointer according to the requirements of the question, and set the width and length; Pivot: Set the circular axis or rectangular axis according to the requirements of the question, and then adjust the outer frame color and inner color; Under Limit/Marker, the minimum and maximum values are set according to the requirements of the question; Range: Check the display value range marker, set the lower limit, range, upper limit color and width according to the question, use the user-defined radius, and enter the radius value; If the question requires the upper and lower limits to be taken from registers, check the upper and lower limits from registers option and set the register address of the lower limits.

If it is not required, it is not checked, and the upper and lower limits can be set by their own values; If you check the tick symbol, select Chinese font as the font, and then set the color, size, and number of decimal places according to the requirements of the question;

Use the bit status to control whether the watch hand component is displayed: In the watch hand component safety, check the Use Active/Invalid option, set the position to take effect when the bit status is ON or OFF, and set the trigger address.

6. Switch window:

(1) Click the button to switch: select the function key component, select the switch basic window command in the pop-up dialog box, select the window to be switched by window number, and then set the background image according to the requirements of the question.

(2) N seconds automatic switching: add a multi-state setting element, the address takes LW0 as an example, the mode selection is automatically incremented (increased to the upper limit), the upper limit value is entered into the window number of the switching window, the frequency = N/ (upper limit value / incremental value), the incremental value is calculated, the control type is selected to switch the basic window in the PLC control, and the trigger address is LW0.

7. Numerical value display system time

The numerical element addresses are selected from the system registers, which are LW9022 (year), LW9021 (month), LW9020 (day), LW9019 (hour), LW9018 (minute), LW9017 (second), the data format is set to 16-bit Unsigned, and the font is changed to Chinese font.

8. System time is equal to set time switching window:

A new macro is added and set to trigger periodically:

Read 12 data of system time and set time respectively to judge, if all data of system time are equal to the data of the corresponding set time, send 12 to LW0, in PLC control, control type selection switch basic window, trigger address selection LW0.

9. Enter the username and password, and the login button will be displayed

Click the edit menu, select the system parameter settings, and then in the user password, check enable 1, set the password according to the requirements of the question, only check category A for the following categories, after the setting is completed, add 2 new numeric component addresses and select LW9219 (user number) and LW9220 (password) respectively, select 16-bit Unsigned for user number and 32-bit Unsigned for password; Add another function key component, switch the window to 10 windows, in security, the user restricts the operation category to select the category: A, check the box to hide the component when the user does not have permission to operate this category.

Enter the user name and password arbitrarily: execute macro instructions periodically, the user name and password address are LW1 and LW2, read the data of LW1 and LW2, if they are not equal to 0, set the bit state LB0 to the ON state, and display the login button; Otherwise, the bit status is OFF, and the login button is not displayed.

10. Draw graphics as required:

Apply elements such as straight lines, free curves, multi-segment lines, arcs, ellipses, sectors, rectangles, polygons, scales, etc. according to the requirements of the topic.

11. Display the same data with bar plots and numerical values:

Set the address and data format of the bar plot to the same as that of the numeric component.

12. Use numerical elements to display the setting value of the slide switch in real time

Set the address of the slide switch and numeric element and the monitor address of the slide switch to the same address, and unify the data format.

13. Numerical comparison and button control realize equipment linkage control

Periodically execute or trigger macros via a button:

Read the lighting value and the setting value and the button state to judge, if the setting value is greater than the lighting value and the button state is 1, the light is on; Otherwise, the lights go off.

14. The text is displayed in turn, and does not disappear after display:

Bit Status Indicator/Text Active (EB Pro only): Add 4 digits of status indicator or text element, check the Active/Invalid option in Security, select Hide when off, set the trigger address to LB0, LB1, LB2, LB3 respectively, and then trigger the macro and set it to execute periodically:

First, set LB0 as the ON state, then add a delay function, the delay time is 1000ms, then set LB1 as the ON state, add a delay function, delay 1000ms, and set LB2 to the ON state; Add a delay function with a delay of 1000 ms and set LB3 to the ON state.

15. The pop-up window displays:

(1) Add a bit state setting component, the address is LB0, add a direct window component, select ON trigger as the trigger mode, select the window number that needs to pop up, and the address is the same as the bit state setting is LB0.

(2) Use the function key component, select the pop-up window, set the window number and whether to display the window control bar.

16. Switch between different windows with one button:

(1) Switch the window according to the current window number:

In the macro command, read the current window number first, and then write the window number of the previous window or the next window to LW0 according to the window number, and add a new switching window in the PLC control, and select LW0 as the trigger address.

(2) Switch the window according to the requirements of the question:

According to the requirements of the question, judge whether the conditions are met, if the switch to 13 window is satisfied, then write 13 to LW0, if it is not satisfied to switch to 10 window, then write 10 to LW0, and select the switch basic window in the PLC control, and select LW0 for the trigger address.

17. The component is valid and invalid:

Under Component Safety, select the Active/Invalid option, and you can select three situations: hide when closed, use grayscale effect when closed, and display but invalid, enter the trigger address, and set it to ON/OFF to be effective, and select different situations according to the topic.
Velun Tong Touch Screen EBPro Software Knowledge Points(1-17)

More on that
What is the reason why the touch screen cannot be turned on after restoring the factory settings? What is the reason why the touch screen cannot be turned on after restoring the factory settings?

1. Check that the power cord is plugged in and if there is electricity. If there is no electricity, you can replace the cord or plug. 2. Check if the power switch is on. If it doesn't turn on, you can try turning on the power switch. 3. Check if the battery is charged. If the battery is low ...

Velun Tong Touch Screen EBPro Software Knowledge Points (1-20) Velun Tong Touch Screen EBPro Software Knowledge Points (1-20)

1. Background color: Right-click on the blank space of the window, select Properties, Pop-up Settings, and select a color in the background; Hatch: In the background, tick the fill, select the pattern color and pattern. 2. Picture/Background Image: Select Picture Element ...

How to modify the description of the measurement point of the touch screen? How to modify the description of the measurement point of the touch screen?

1. First of all, open the created Weilun touch screen project, select Common in the menu bar and click Open. 2. Secondly, select the system parameter icon in the common drop-down menu and click to open. 3. Finally, click Change. ...

Veriton touch screen - how to adjust the sensitivity of capacitive touch screen Veriton touch screen - how to adjust the sensitivity of capacitive touch screen

Method 1: Reconfigure capacitive screen parameters through the configuration file The configuration parameters of the capacitive touch screen are saved in the serial port screen, and the sensitivity of the capacitive touch screen can be configured by writing new parameters. For customers who need to add a panel to a capacitive touch screen, panel samples and structures can be ...

How to change the description of the touch screen measurement point of Weiluntong How to change the description of the touch screen measurement point of Weiluntong

1. First of all, open the created Weilun touch screen project, select Common in the menu bar and click Open. 2. Secondly, select the system parameter icon in the common drop-down menu and click to open. 3. Finally, click Change. ...

How does the touch screen of Weiluntong put the picture at the bottom layer How does the touch screen of Weiluntong put the picture at the bottom layer

1. First of all, open the Weiluntong touch screen and enter the application. 2. Secondly, select "Edit" → "Personalization" on the control bar of the window. 3. Finally, set the picture to the bottom layer. ...

Veriton MT500 Touch Screen FAQs Veriton MT500 Touch Screen FAQs

1. Why can't the screen display Chinese normally, but the display is garbled? Answer: This situation is generally caused by not choosing the correct Chinese font, just choose a Chinese font, the specific operation steps are as follows: 1) In EasyBuilder soft...

How to enter the system settings of the MT6070ih screen How to enter the system settings of the MT6070ih screen

1. Generally, in the lower right corner of the touch screen, there is a small black arrow button, click and enter the correct password, you can enter the system settings. There are generally three ways to enter the system setting of the TK6070ih touch screen: 1,Generally in the lower right corner of the touch screen, ...

Weiluntong touch screen MT (iP) series (compact type) Weiluntong touch screen MT (iP) series (compact type)

1、MT6102iQ 10.1" TFT display 1024*600 dots, brightness 350, contrast ratio 500:1, 16.7M color, 128MB memory, DC10.5-28VDC power supply, four-wire resistive type, USB Host USB2.0/Serial Interface (Con.A COM2 RS-485 2W/...

Weiluntong touch screen - introduction to the operation skills of touch screen Weiluntong touch screen - introduction to the operation skills of touch screen

1. If you are using a capacitive touch screen, then it is recommended that you first install the driver required for the capacitive touch screen correctly according to the requirements of the manual when you use it for the first time, and then click "Start"/"Program"/"Microtouch Touc" on the screen with your fingers.

Fault analysis and treatment of Weiluntong touch screen Fault analysis and treatment of Weiluntong touch screen

1) Check if the hard drive is turned off in the "Display Energy Saving Settings" of Wlndows 9x. The way to do this is to right-click on the desktop, select the "Properties" command, then select the "Screen Saver" tab from the dialog box, click the "Settings" button, and set the parameter to "...

Weiluntong touch screen repair method Weiluntong touch screen repair method

Weiluntong contact screen repair   The first step in troubleshooting a touchscreen system is to determine if the problem is related to the display, software, or hardware: Don't confuse the visibility issue with the contact screen issue, the two are unrelated. Software problems are caused by fundamental hardware functions ...

What are the ways to enter the system setting of the TK6070ih touch screen? What are the ways to enter the system setting of the TK6070ih touch screen?

1. Generally, in the lower right corner of the touch screen, there is a small black arrow button, click and enter the correct password, you can enter the system settings. However, when configuring, you can disable this button in the software system settings. 2. Set the system bit LB-9020 in the touch screen to ON...

What are the symptoms of Weiluntong touch screen motherboard failure? What are the symptoms of Weiluntong touch screen motherboard failure?

1. The motherboard cannot recognize/display the peripheral devices. 2. The peripherals will stop working for a few seconds or more. 3. A slow boot may indicate that your motherboard is broken, although it could also be other components. 4. The touch screen does not recognize the flash drive, or ...

What are the technical difficulties of Weiluntong touch screen - infrared touch screen? What are the technical difficulties of Weiluntong touch screen - infrared touch screen?

Ambient light factor, infrared receiver tube has a working range between minimum sensitivity and maximum illumination, but touch screen products can not limit the range of use, from the dark cabaret room to the outdoor use under the high-intensity sunlight on Hainan Island, as a product, it must adapt. Rapid detection ...

Weiluntong touch screen does not respond to the fault maintenance fault cause Weiluntong touch screen does not respond to the fault maintenance fault cause

1. The line interface of the Weilun Tong touch screen is faulty. 2. Whether there is a crack fault on the surface of the touch screen. 3. External interference and control box failure. 4. The connection between the touch screen and the host or the host is faulty. ...

Veruntong touch screen - how the touch screen communicates with the PLC Veruntong touch screen - how the touch screen communicates with the PLC

1. Connect the touch screen with the PLC We know the communication between two pieces of hardware, whether wireless or wired. The first step is to establish a connection. The most common connection between PLC and touch screen is serial data cable connection. The data cable can be used in a treasure ...

What industries is Weiluntong touch screen - touch all-in-one machine suitable for? What industries is Weiluntong touch screen - touch all-in-one machine suitable for?

1.3D Object Exhibition (dynamic display of 3D models of objects) [1] 2. Banks and other financial institutions (business inquiries and service promotion at business locations) 3. Telecommunications (business inquiry in the business hall, business promotion in the experience hall) 4. Government agencies (public information issuance)

Weiluntong touch screen - what should I do if the industrial touch screen clicks and does not respond? Weiluntong touch screen - what should I do if the industrial touch screen clicks and does not respond?

The industrial touch screen is a resistive screen, which is better than the capacitive screen anti-interference, but generally if there is no response, most of the touch glass on the outside (generally called the touch board) is broken, and it is good to replace it directly, of course, the following problems are not excluded: 1. The touch screen and PLC are generally used together, and the ...

Weiluntong touch screen - precautions for the use of industrial tablet computers Weiluntong touch screen - precautions for the use of industrial tablet computers

1. When turning on and off the power of the machine, it should be operated in strict accordance with the regulations; 2. According to the severity of the environment, set a time limit to open the machine head to clean the reflective stripes and inner surface of the touch screen; 3. At present, the mainstream industrial display program does not have a mouse cursor, because the flashing of the cursor will ...

CATEGORIES BYPASS
Customer Service Center

Online Consultation:QQ


ContactContact

Contact: Manager Huang

Contact QQ: 3271883383

Contact number: 13522565663


Scan the code to add WeChat (please save the picture first on the mobile phone)

working hoursworking hours

Weekdays: 9:00-17:00

Holidays: Only emergencies are handled

Contact us

Contact us

Contact number QQ consultation
QQ consultation

3271883383

Company address
Back to top