适用于Java的S7 PLC连接器
特征
使用TCP连接连接到Siemens S7 PLC
从S7 PLC读取数据或向S7 PLC写入数据
OSGi支持
PROFINET支持
直接从Maven Central使用
Apache许可证
入门
简单的读/写示例
// Create connection
S7Connector connector =
S7ConnectorFactory
.buildTCPConnector()
.withHost( " 10.0.0.220 " )
.withType( 1 ) // optional
.withRack( 0 ) // optional
.withSlot( 2 ) // optiona
1