Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHello,
You should add the SetUnicode function into the Scripts table. Then use it in the channel’s formula field.
If you provide screenshots of your settings, I can check.
MikhailModeratorPlease use this subforum to write in Chinese.
December 11, 2024 at 11:13 am in reply to: Add OPC DA error:’OpcRcw.Comn.IOPCServerList2′ No such interface supported #15738
MikhailModeratorUpload images to any free hosting (Google Drive, for example) and post a link here.
MikhailModeratorChannel should be of the Calculated/output type
MikhailModeratorHello,
Try
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; }
MikhailModerator🙂
December 10, 2024 at 10:32 am in reply to: Add OPC DA error:’OpcRcw.Comn.IOPCServerList2′ No such interface supported #15727
MikhailModeratorHave you already tried the recommendations from this topic?
MikhailModeratorHello,
A license is applied to a server. If you have 1 server machine and 5 client PCs, you need 1 license. I suggest installing the plugin with trial keys to check it.
MikhailModeratorHello,
That’s possible. You should use scripts for that purpose. Read more info about scripts.December 6, 2024 at 10:32 am in reply to: Automatic Control Module does not appear in the list of unused plugins #15717
MikhailModeratorHi,
I suggest to watch the video about that module on our Youtube channel.-
This reply was modified 1 year, 7 months ago by
Mikhail.
MikhailModeratorOK 🙂
MikhailModeratorHello,
Is it possible to hide the EVENT PAGE and then automatically activate the event page when an alarm occurs?
Try Notification Plugin.
Also, can’t there be 3 LED color changes?
Color is defined by status. Any colors is possible.
MikhailModeratorFor such long messages, create a function that returns a string and use it for an input channel.
For example:public string MyString() { if (Cnl < 0) return "Abc"; else return "Cde"; }In the channel input formula:
MyString()
MikhailModeratorHello,
Alarms and events are displayed in the bottom panel.
If you create channels that indicate alarms, you can show them in a view such as table or scheme.Event messages are not editable.
The ack function is available for event displayed in the bottom panel. -
This reply was modified 1 year, 7 months ago by
-
AuthorPosts