Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHello,
Could you provide a screenshot or video?
MikhailModeratorMay be you should set an input formula of the channel 145 to blank, and try again.
MikhailModeratorIf you remove Val(145) in that channel, where do you set the channel’s 145 value? Which place the TimeUpdate() function is called?
MikhailModeratorThe Format field affects a command sending dialog. Could you make a screenshot of the command dialog?
MikhailModeratorHello,
Have you tried the Toggle component?
A draft of UI element may help to understand the question more precisely.
MikhailModeratorThe function below takes a data length into account for Unicode strings.
public byte[] SetUnicode() { if (ArrIdx == 0) { string s = CmdData == null ? "null" : Encoding.UTF8.GetString(CmdData); int dataSize = Channel.DataLen ?? 1; for (int i = 0; i < dataSize; i++) { string part = Substring(s, i * 4, 4); SetData(CnlNum + i, EncodeUnicode(part), 1); } } return CmdData; }
MikhailModeratorHello,
It seems that using theVal(145)input formula in the channel 145 is excessive.
MikhailModeratorAdd the following function in the Scripts table:
public byte[] SetStr() { string s; if (CmdData == null) s = "null"; else s = Encoding.UTF8.GetString(CmdData); SetData(CnlNum, EncodeAscii(s), 1); return CmdData; }Set the output formula of the channel to
SetStr()
It works for a channel of the data length = 1 (or empty)
MikhailModeratorIn general, I suggest to download and save locally Rapid SCADA package and all plugins at the same moment to ensure they are compatible.
MikhailModeratorHOW does one determine/show what version of Rapid SCADA is currently installed?
Rapid SCADA of version X.X.X consists of several applications. Each application has its own version Y.Y.Y.Y. You can find versions of any certain application in the UI or logs. Then search in the product history to realize which Rapid SCADA version matches. However, an application may be unchanged and included in a few versions of the distributive.
Thanks.
MikhailModeratorIn my project I have 62 input and 9 output channels.
May be it would be easier to create a new project in v6. You can manually copy schemes and Modbus templates from the v5 project.
MikhailModeratorHi,
According to the above link, the latest Rapid SCADA 6.4.0 (January 23, 2025) includes Webstation 6.2.0.3.
MikhailModeratorHow many channels are in your project?
-
AuthorPosts