Forum Replies Created
-
AuthorPosts
-
September 19, 2022 at 7:15 am in reply to: How to manage MQTT JSON data from Rapid Scada version 6 beta #10828
MikhailModeratorHi,
Check server log for errors.
MikhailModeratorThe formula
Cnl; Cnl > 0 ? 15 : CnlStatdoes not contain particular channel number. It’s applied to the channel of the formula.15 is a channel status. You can see channel status IDs in the Event types table.
MikhailModeratorAccording to the manual there is no difference. They are the same.
MikhailModeratorI will check.
September 18, 2022 at 9:26 am in reply to: How to Install Automatic Control Module in Raspberry PI #10808
MikhailModeratorHi,
You should copy the files to the Linux machine and to the Windows machine. Activate the module in the project. You will find the computer code in the module log on Linux.
MikhailModeratorThe correct link is this.
I mean that you should use ScadaCommMono.exe instead of ScadaCommSvc.exe
MikhailModeratorAn event is displayed by Notification plugin if it has channel status, specified in PlgNotification.xml.
Try the formula for your input channel:
Cnl; Cnl > 0 ? 15 : CnlStat
MikhailModeratorHi,
You can try:public double ResetArc(int u, int d) { SetVal(u, 0); SetVal(d, 0); return 0; }-
This reply was modified 3 years, 4 months ago by
Mikhail.
MikhailModeratorHello,
You can use “;” to split a formula as you did in version 5.
In version 6 you can also use a function to calculate channel data like that:
NewData(1.23, 1)
where 1.23 is value and 1 is status.
MikhailModeratorChannel data contains value and status. If you open archive data using the Administrator app you can see that.
A formula can calculate channel value and status separately. Semicolon splits formula into 2 parts. 1st for calculating value, 2nd for calculating status.
MikhailModeratorThanks for your beta update but somehow ScadaReport.dll not included.
Thank you for noticing. scada_6.beta.9.zip has been fixed and reuploaded.
Remove user and password from OPC UA server and connect to it anonymously works.
Can you demonstrate a screenshot of the client settings that do not work?
MikhailModeratorHi,
Add a new channel of the calculated type that shows the device status.
Use the formula for the new channel:Stat(101) > 0 ? 1 : 0where 101 is the source channel number. -
This reply was modified 3 years, 4 months ago by
-
AuthorPosts