We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3170ad2 commit 9e75051Copy full SHA for 9e75051
EasyModbusAdvancedClient/EasyModbusManager.cs
@@ -246,10 +246,12 @@ public FunctionProperties FindPropertyFromGrid( int gridRow)
246
247
public void WriteToServer(FunctionProperties prop, int[] values)
248
{
249
+ /*
250
string text = "";
- text += "property " + prop.StartingAdress + "\n" + "type " + prop.FunctionCodeWrite.ToString() + "\n" + "new value: " + prop.values.ToString() + "\n";
251
+ text += "property " + prop.StartingAdress + "\n" + "type " + prop.FunctionCodeWrite.ToString() + "\n" + "new value: " + values.ToString() + "\n";
252
text += "connection " + prop.Connection.ConnectionName;
253
MessageBox.Show(text, "updating register");
254
+ */
255
256
int startingAddress = prop.StartingAdress;
257
switch(prop.FunctionCodeWrite)
0 commit comments