Forum Replies Created
-
AuthorPosts
-
MikhailModeratorJust type 0
MikhailModeratorI agree with the above.
MikhailModeratorDo you mean reusing scheme parts?
MikhailModeratorHi,
@manjey73 is right. To send a command, trigger requires a channel value change from 1 to 0, for example.
MikhailModeratorHi,
You should find PlgChartPro.xml in the installation package and add it into the project, Webstation configuration folder. Then upload the project.
MikhailModeratorHello,
> Can I make a new output channel where a command can be sent using a formula without any manual entry for the command?
To send command automatically without any manual entry, you need Automatic Control Module.
MikhailModeratorHello,
Thank you for the fix. I updated the above formula.> the output channel 127/mapped Modbus coil should become 0 automatically
An output channel does not store any value. It only describes how commands are sent.
If you need to send command depending on input channel value, Automatic Control Module can help, https://rapidscada.org/download-all-files/download-automatic-control-module/I’m not sure that I understand the question clearly. Screenshots would clarify.
MikhailModerator> 1. On V5 if the formula used channel exceed ~1.5k, the server will crash.
Should work on v6, because source code of the formulas are split to multiple classes.2. On V5 if the reading of 1 device exceed ~4k, communicator will not be able send to to server.
The limit was increased.
Refer the internal application protocol https://disk.yandex.ru/i/5ouUfspLjQ_k-A
See “Function 0x0206. Write Current Data”
The data buffer size is 1 MB. I suppose, it’s possible to send more than 50k channels, in theory.Testing is appreciated.
MikhailModeratorThank you for testing.
> Make the search and replace function applicable for the enable (checkbox) fields.
That’s possible in the future. Currently, use a table filter or sorting by column. With the Space button you can change a checkbox.> Is it possible to copy an array / list from excel and paste it to the ScadAdmin table?
Yes, use export to CSV and import from CSV.> The linux pack no longer has ScadaAdmin.
Microsoft .NET 6 does not support WinForms for Linux, unfortunately.> Is there any features that allow user to at least upload a project from Linux desktop or command line?
Simple way:
– Copy project files to the appropriate folders under /opt/scada
– Use a command line utility (I can share it) to convert the configuration database from XML to DAT format.Complex way:
Create a tool for uploading a project using Agent service like the Administrator app does. It would be possible to upload projects also to PostgreSQL database. Such tool could be created with help of a sponsor.
MikhailModeratorHello,
1. Add a new formula into the Formulas table like:
public double ConvertCmd() { if (Cmd > 0) return Val(101) > 0 ? 1 : 0; else return Val(101) > 0 ? 0 : 1; }where 101 is the input channel number.
Update conditions according to the required logic.2. Use this function in the formula of the output channel.
ConvertCmd()-
This reply was modified 4 years, 2 months ago by
Mikhail.
MikhailModeratorHi,
Currently, led is only round unless using Dynamic Picture component.
However, several people asked about square leds. I’ve added this feature to the backlog.
MikhailModeratorHi,
Please provide more info
1. What the 2nd MQTT client software do you use?
2. What MQTT broker do you use?
3. Can other 2 MQTT (not Rapid SCADA) clients communicate normally?
MikhailModeratorHi,
You need Automatic Control Module https://rapidscada.org/download-all-files/download-automatic-control-module/ to send commands. In the module settings create a trigger that sends a command when channel data changes. Also create an input channel of the Calculated type that changes its value with the required period of time.
-
This reply was modified 4 years, 2 months ago by
Mikhail.
MikhailModeratorHi,
Export *.dat to CSV is available in the Administrator app now. Open an archive data file and find the Export to CSV button.
MikhailModeratorHello,
I suggest to create all channels within a single project, and have unique channel numbers for each site. Then create deployment profiles for the sites with different object filters. After that upload project using the created deployment profiles. -
This reply was modified 4 years, 2 months ago by
-
AuthorPosts