このhowToModbusSlaveによると、選択した値のレジスタを使用して独自の modbus スレーブを構築しようとしています (後で、python/jython を使用して監視対象デバイスからのデータをこれらの値に入力し、Predix (クラウド プラットフォーム) を使用して送信します)。私は modbus のグリーンホーンであるため、選択した値をレジスターホルダーに追加する方法をまだ見つけることができません。
localhost:502 でマスターにデータを提供するために使用するスレーブ スレッドを次に示します。
public class SimpleApp {
public static void main(String args[]) {
try {
//1. The important instances and variables
ModbusTCPListener listener = null;
SimpleProcessImage spi = null;
int port = 502;
//2. Prepare a process image
spi = new SimpleProcessImage();
//I dont understand this part, why do i need it?
spi.addDigitalOut(new SimpleDigitalOut(true));
spi.addDigitalOut(new SimpleDigitalOut(false));
spi.addDigitalIn(new SimpleDigitalIn(false));
spi.addDigitalIn(new SimpleDigitalIn(true));
spi.addDigitalIn(new SimpleDigitalIn(false));
spi.addDigitalIn(new SimpleDigitalIn(true));
//setting up register holders, gonna ask no 10,11,20 and 21 as set in the data node config
for (int i = 0; i < 25; i++) {
int value = 15;
SimpleInputRegister sr = new SimpleInputRegister(value);
spi.addRegister(sr);
}
//3. Set the image on the coupler
ModbusCoupler.getReference().setProcessImage(spi);
ModbusCoupler.getReference().setMaster(false);
ModbusCoupler.getReference().setUnitID(15); //15
//4. Create a listener with 3 threads in pool
listener = new ModbusTCPListener(1); //no of threads
listener.setPort(port);
listener.start();
} catch (Exception ex) {
ex.printStackTrace();
}
}
}
データノード構成:
<channel protocol="TCP_IP" tcpIpAddress="127.0.0.1" tcpIpPort="502">
<unit id="1">
<register name="Node-1-1" dataType="INTEGER" address="10" registerType="HOLDING" description="temperature"/>
<register name="Node-1-2" dataType="DECIMAL" address="11" registerType="HOLDING" description="pressure"/>
</unit>
<unit id="2">
<register name="Node-2-1" dataType="INTEGER" address="20" registerType="HOLDING" description="temperature"/>
<register name="Node-2-2" dataType="INTEGER" address="21" registerType="HOLDING" description="pressure"/>
</unit>
</channel>
私はこれらの転送を取得します(「出力」):
[{"address":"com.ge.dspmicro.machineadapter.modbus://127.0.0.1:502/2/20","datatype":"INTEGER","name":"Node-2-1","category":"REAL","value":655370,"timestamp":1464006550991,"quality":"NOT_SUPPORTED (20000000) "},
{"address":"com.ge.dspmicro.machineadapter.modbus://127.0.0.1:502/1/10","datatype":"INTEGER","name":"Node-1-1","category":"REAL","value":655370,"timestamp":1464006550992,"quality":"NOT_SUPPORTED (20000000) "}]
主な質問:
1) ノード 1-2 および 2-2 からのデータはどこにありますか (出力にない)。
2) レジスタから送信された値を編集するにはどうすればよいですか? (なぜ「値」:655370 を取得するのですか?)
オプションの質問: (ドキュメントで理解できなかったこと)
3) simpleDigitalOut/In クラスは何の略ですか?
4) ModbusCoupler.getReference().setUnitID(value) は何を表していますか? (明らかに、データノードの unitID と共通することは何もする必要はありません
5) SimpleInputRegister と SimpleRegister クラスの違いは何ですか?