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
威纶通触摸MT6070ih屏如何进入系统设置 威纶通触摸MT6070ih屏如何进入系统设置

1、 一般在触摸屏的右下角,有个一黑色的小箭头按钮,点击并且输入正确的密码后,可以进入系统设定。   威伦通TK6070ih触摸屏进入系统设定一般有三种方法:   1,一般在触摸屏的右下角, ...

威纶通触摸屏恢复出厂设置后不能开机是因为什么? 威纶通触摸屏恢复出厂设置后不能开机是因为什么?

1. 检查电源线是否插好,是否有电。如果没有电,可以更换电源线或者插头。   2. 检查电源开关是否打开。如果没有打开,可以尝试打开电源开关。   3. 检查电池是否充电。如果电池电量不足 ...

Weiluntong touch screen - the feature of infrared touch screen Weiluntong touch screen - the feature of infrared touch screen

1. The infrared touch screen does not need touch pressure, it can be operated freely even if you wear gloves, and anything can be touched. 2. Compared with the display equipped with capacitive and resistive touch screen, the picture saturation is richer and the contrast ratio is better, which improves the user's visual comfort. ...

威纶通触摸屏EBPro软件知识点(25-29) 威纶通触摸屏EBPro软件知识点(25-29)

25、位状态切换开关、位状态指示灯、设备联动:   通过位状态切换开关元件OFF->ON,执行宏指令:将位状态指示灯设为ON状态;   通过PLC控制中选择执行宏指令,触发方式选择ON->OFF,将位 ...

威纶通触摸屏——工业平板电脑的主要特性有哪些? 威纶通触摸屏——工业平板电脑的主要特性有哪些?

1、工业触控平板电脑是一体机的结构,主机、液晶显示器、触摸屏合为一体,稳定性比较好。   2、采用比较流行的触摸功能,可以简化工作,更方便快捷,比较人性化。   3、工业触控平板电脑 ...

威纶通触摸屏参数设置 威纶通触摸屏参数设置

1.系统参数   1.1 通讯口类型里面的RS485 2W、RS485 4W分别代表什么意思?   RS485 2W表示的是接线方式即两线制,也就是除GND外有两个信号线要接;   RS485 4W表示的是接线方式即四线 ...

威纶通触摸屏cmt换mt复制画面的步骤 威纶通触摸屏cmt换mt复制画面的步骤

1.按下“Menu”键,进入菜单界面。   2.选择“Picture”选项,进入画面设置界面。   3.在画面设置界面中,找到“Copy”选项,按下“Enter”键进入。   4.在“Copy”选项中,选择“Copy ...

威纶通MT500触摸屏常见问题解答 威纶通MT500触摸屏常见问题解答

1、 为什么画面中文不能正常显示,显示的却是乱码?   答:这种情况一般都是由于没有选择正确的中文字体造成的,只要选择一下中文字体就可以了,具体操作步骤如下:   1) 在EasyBuilder软 ...

如何选择威纶通CMT密码登录? 如何选择威纶通CMT密码登录?

右双击参数设置按钮。   具体步骤:   1、新建一个画面,然后做好键盘,其中的确定按钮为【画面跳转控制】   2、右双击【参数设置】按钮,选择【属性】。   3、点击【安全】,然后 ...

如何解决威纶通触摸屏离线模拟没反应 如何解决威纶通触摸屏离线模拟没反应

1. 检查硬件连接:确保触摸屏正确连接到设备,所有的线缆和连接器都处于正常工作状态。检查连接器是否松动或损坏,如果是,请重新连接或更换连接器。   2. 检查驱动程序:确保设备上已正确安 ...

威纶通触摸屏的故障分析及处理 威纶通触摸屏的故障分析及处理

1)检查在Wlndows 9x的“显示器节能设置”中是否设置了关闭硬盘。方法是在桌面单击鼠标右键,选择“属性”命令,再从对话框中选择“屏幕保护程序”选项卡,单击“设置”按钮,将参数设置为除“ ...

威纶通触摸屏操作方法 威纶通触摸屏操作方法

威纶通接触屏的一些使用技巧   假如在中途操作电容接触屏时,从头改变了接触屏的显示器分辨率或显示形式,或许是自行调整了接触屏操控器的刷新频率后,感觉到光标与接触点不能对应时,都必须 ...

威纶通触摸屏维修方法 威纶通触摸屏维修方法

威纶通接触屏维修   对接触屏体系进行毛病扫除的第一步是确认问题是否与显现器,软件或硬件有关:   请勿将显现问题与接触屏问题混为一谈,两者是无关的。   软件问题由根本的硬件功用 ...

威纶通——触摸屏故障原因分析及处理 威纶通——触摸屏故障原因分析及处理

请先检查连接接口是否松动,再检查“serial port”和“interrupt number”是否冲突。如果有冲突,调整资源以避免冲突。然后检查触摸屏表面是否有裂纹。如有裂纹,及时更换。还需要检查触摸屏表 ...

威纶通如何把数据传输到u盘? 威纶通如何把数据传输到u盘?

1、触摸屏上插上U盘,不需要把屏断电,屏是支持热插拔功能的,不过这时最好屏不要和外部设备通讯,以减少不必要的影响。屏检测到外部设备后会弹出一个对话框,选择第二个Upload Project这个选项 ...

威纶通触摸屏——电阻式触摸屏的分类及详细介绍 威纶通触摸屏——电阻式触摸屏的分类及详细介绍

四线式:   四线式触摸屏因为成本以及技术层次比较成熟等因素,几乎是所以触摸屏从业者最基本的生产规格。首先以 电阻触摸屏的技术来讲,四线式的触摸屏大约占了50%以上的市场。它的组成主要 ...

威纶通触摸屏编程软件在网上用rs485与plc实现在线模的方法 威纶通触摸屏编程软件在网上用rs485与plc实现在线模的方法

1、用一根红色导线将触摸屏Rs485端口的7脚与DTD434MC的A端口相连接。用另一根黑色导线将触摸屏Rs485端口的8脚与DTD434MC的B端口相连接。   2、无线通讯终端设置开关中最后一位(K88)拨码开 ...

威纶通触摸屏提示设备无响应的处理方法 威纶通触摸屏提示设备无响应的处理方法

首先检查各接线接口是否出现松动,然后检查串口及中断号是否有冲突,若有冲突,应调整资源,避开冲突。再检查触摸屏表面是否出现裂缝,如有裂缝应及时更换。还需要检查触摸屏表面是否有尘垢,若 ...

威纶通触摸屏使用经常遇到的问题——通讯类问题 威纶通触摸屏使用经常遇到的问题——通讯类问题

1. 与PLC的通信   1.1当PLC和触摸屏之间的通信不可用时该怎么办   客户在使用触摸屏时遇到的最常见问题是屏幕和PLC之间的通信问题。如果通信失败,请使用以下步骤:   A“直接在线模拟 ...

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

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