You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
439 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.example.pdaplccontrol;
public interface PlcValueSender {
/**
* 只在用户选择线体时写一次,避免持续写入覆盖触摸屏侧操作。
*/
void sendLineNumber(short lineNumber) throws PlcCommunicationException;
/**
* 只在用户完成重量输入时写一次PLC 侧按克整数保存重量。
*/
void sendWeightGrams(short weightGrams) throws PlcCommunicationException;
}