1、ModbusTCPSlave
此处new TcpSlave(10000, false)
因ubuntu下1000以下端口需要root权限,故这里使用了10000这个端口,windows下可以使用502端口
| package slave; |
| |
| import com.serotonin.modbus4j.ModbusFactory; |
| import com.serotonin.modbus4j.ModbusSlaveSet; |
| import com.serotonin.modbus4j.ip.tcp.TcpSlave; |
| |
| public class ModbusTCPSlave { |
| public static void main(String[] args) throws Exception { |
| run(); |
| } |
| |
| public static void run() throws Exception { |
| |
| new Thread(() -> { |
| createSalve(); |
| }).start(); |
| |
| Thread.sleep(1000); |
| |
| |
| } |
| |
| |
| |
| |
| private static void createSalve() { |
| |
| ModbusFactory modbusFactory = new ModbusFactory(); |
| |
| |
| final ModbusSlaveSet salve = new TcpSlave(10000, false); |
| |
| |
| salve.addProcessImage(Register.getModscanProcessImage(1)); |
| |
| salve.getProcessImage(1); |
| try { |
| salve.start(); |
| System.out.println("salve.start();"); |
| } catch (Exception e) { |
| e.printStackTrace(); |
| } |
| } |
| } |
2、BasicProcessImageListener
| package slave; |
| |
| import com.serotonin.modbus4j.ProcessImageListener; |
| |
| |
| |
| |
| public class BasicProcessImageListener implements ProcessImageListener { |
| |
| @Override |
| public void coilWrite(int i, boolean b, boolean b1) { |
| |
| } |
| |
| @Override |
| public void holdingRegisterWrite(int offset, short oldValue, short newValue) { |
| System.out.println("Register at " + offset + "," + "change " + oldValue + " to " + newValue); |
| } |
| } |
3、Register
| package slave; |
| |
| import com.serotonin.modbus4j.BasicProcessImage; |
| |
| |
| |
| |
| public class Register { |
| public static BasicProcessImage getModscanProcessImage(int slaveId) { |
| |
| BasicProcessImage processImage = new BasicProcessImage(slaveId); |
| |
| processImage.setInvalidAddressValue(Short.MIN_VALUE); |
| |
| for (int i = 0; i < 608; i++) { |
| processImage.setHoldingRegister(i, (short) 0); |
| } |
| |
| processImage.addListener(new BasicProcessImageListener()); |
| return processImage; |
| } |
| } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· [.NET]调用本地 Deepseek 模型
· 一个费力不讨好的项目,让我损失了近一半的绩效!
· .NET Core 托管堆内存泄露/CPU异常的常见思路
· PostgreSQL 和 SQL Server 在统计信息维护中的关键差异
· C++代码改造为UTF-8编码问题的总结
· 【.NET】调用本地 Deepseek 模型
· CSnakes vs Python.NET:高效嵌入与灵活互通的跨语言方案对比
· DeepSeek “源神”启动!「GitHub 热点速览」
· 我与微信审核的“相爱相杀”看个人小程序副业
· Plotly.NET 一个为 .NET 打造的强大开源交互式图表库
2019-06-16 jquery 实现点评标签 类似淘宝大众点评的 快速准时 货品完好等