Mikhail

Forum Replies Created

Viewing 15 posts - 2,611 through 2,625 (of 6,244 total)
  • Author
    Posts
  • in reply to: Sending Command Skipped #10067
    Mikhail
    Moderator

    Just type 0

    in reply to: Sending Command Skipped #10065
    Mikhail
    Moderator

    I agree with the above.

    in reply to: Add schemes to a page the same way as pictures #10062
    Mikhail
    Moderator

    Do you mean reusing scheme parts?

    in reply to: Sending Command Skipped #10061
    Mikhail
    Moderator

    Hi,

    @manjey73
    is right. To send a command, trigger requires a channel value change from 1 to 0, for example.

    in reply to: File PlgChartPro.xml #10060
    Mikhail
    Moderator

    Hi,
    You should find PlgChartPro.xml in the installation package and add it into the project, Webstation configuration folder. Then upload the project.

    in reply to: Required to write a formula for a command #10053
    Mikhail
    Moderator

    Hello,

    > 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.

    in reply to: Required to write a formula for a command #10051
    Mikhail
    Moderator

    Hello,
    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.

    in reply to: Rapid SCADA 6 Beta #10047
    Mikhail
    Moderator

    > 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.

    in reply to: Rapid SCADA 6 Beta #10046
    Mikhail
    Moderator

    Thank 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.

    in reply to: Required to write a formula for a command #10042
    Mikhail
    Moderator

    Hello,

    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.
    in reply to: LED Component #10040
    Mikhail
    Moderator

    Hi,

    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.

    in reply to: Mqtt communication error #10036
    Mikhail
    Moderator

    Hi,

    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?

    in reply to: SCADA-Administrator Output channels #10034
    Mikhail
    Moderator

    Hi,

    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.
    in reply to: Manipulating DAT files #10033
    Mikhail
    Moderator

    Hi,
    Export *.dat to CSV is available in the Administrator app now. Open an archive data file and find the Export to CSV button.

    in reply to: Create channel number group (V6) #10028
    Mikhail
    Moderator

    Hello,
    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.

Viewing 15 posts - 2,611 through 2,625 (of 6,244 total)