You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling S7Server.GetParam(paramNumber), it always returns a boolean instead of the value specified by paramNumber.
This is my code:
var snap7 = require('node-snap7');
var s7server = new snap7.S7Server();
s7server.SetParam(1,3001);
s7server.StartTo('127.0.0.1');
console.log(s7server.GetParam(1),s7server.GetParam(10),s7server.GetParam(11) );
When calling S7Server.GetParam(paramNumber), it always returns a boolean instead of the value specified by paramNumber.
This is my code:
Output:
The text was updated successfully, but these errors were encountered: