Forum Replies Created
-
AuthorPosts
-
MikhailModeratorThe idea of conversion:
Convert the value of double type to 8 bytes. Each byte is a character.public static string DecodeAscii(double val) { byte[] buf = BitConverter.GetBytes(val); return Encoding.ASCII.GetString(buf).TrimEnd((char)0); }You should create a function in your database that performs this conversion.
MikhailModeratorOr should I install the whole 5.7.0?
This is better, because this is the future of Rapid SCADA.
Read this topic for migration details.Can I install just the Scheme Editor 5.2.3.1 over Rapid Scada 5.6.1? How?
Just replace the files of the editor.
Scheme Editor app. does not open.
This problem may not be caused by the app version.
MikhailModeratorHi,
The versions seem compatible.
What is displayed for the plugin on the installed plugins web page?
Please make a screenshot of the Interface table of the configuration database.
MikhailModeratorNote: There is a bug in saving files in Scheme Editor 5.2.3.0. You should take Scheme Editor 5.2.3.1 from Rapid SCADA 5.7.0.
MikhailModeratorHi,
You should also upgrade the plugins. Keys and settings are compatible.
After upgrading, press Ctrl+F5 in your browser to refresh the scripts.
MikhailModeratorUse this link to open your web app:
http://localhost/Scada/AutoLogin.aspx
MikhailModeratorTry this plugin.
It logs in as the first user in the Users table.
MikhailModeratorHi,
Do you mean to log in automatically?
MikhailModeratorHi,
Currently no. If needed, you could purchase a development.
MikhailModeratorHi,
Event color also depends on input channel status like value color. The exception if a unit of an input channel has only 2 possible values, for example, Off-On. In this case, event are colored in red and green.
MikhailModeratorHi,
Also you can change Timeout on the Request sequence page in Communicator. It may make communication more stable.
MikhailModeratorHi,
You can download events in Excel format after selecting a day you need. And then check the events in Excel.
MikhailModeratorHi,
Voice Alarm is always alarm when the event change. if I need it to alarm when the status output change from 0 to 1 but when output = 1 change to 0 should not alarm.
How can I do this.In this year we plan to issue a special notification plugin that solves this task.
Please create a new topic for another question.
MikhailModeratorThe answer is here https://forum.rapidscada.org/?topic=retain-variable
MikhailModeratorHi,
When communication lost, you should get — in a screen. Why you get zero?
How can we hold the old value until the communication come back.
Try the formula: Cnl > 0 ? Cnl : Val()
But this is a bad approach because an operator will be deceived in this situation. -
AuthorPosts