Mikhail

Forum Replies Created

Viewing 15 posts - 871 through 885 (of 6,270 total)
  • Author
    Posts
  • in reply to: Daily Time Counter #15231
    Mikhail
    Moderator

    Hi,
    Any command to an output channel. When command is processed by a channel, the output formula is calculated to reset channels.

    in reply to: Daily Time Counter #15223
    Mikhail
    Moderator

    Hi,

    You right.
    1. Yes. An output channel.
    2. Yes.
    You should check how it works.

    in reply to: Daily Time Counter #15221
    Mikhail
    Moderator

    Option 1 looks better because it does not need an additional module.
    Option 2 is easier.

    in reply to: Daily Time Counter #15220
    Mikhail
    Moderator

    Hi,

    Option 1
    Develop a function that calls the ResetChannels function (I’ve sent it to you) on a required time of a day.

    Option 2
    Use Automatic Control Module without programming. It can send a command on a certain time. A command will be sent to an input channel of the output type which has an output formula ResetChannels(101, 102), for example.

    in reply to: Seeking Ways to Give Back for RapidSCADA #15219
    Mikhail
    Moderator

    My company hired just me, a newcomer, to take on this project (based on RapidSCADA)

    What is the planned result of the work?

    Mikhail
    Moderator

    Now it’s more clear.
    When you send a command:
    Command number – keep by default, it’s not used when the command code is set.
    Command code – the code from the Modbus template.

    Could you make a screenshot of the Modbus template with the selected register to which you send commands?

    • This reply was modified 1 year, 9 months ago by Mikhail.
    in reply to: Daily Time Counter #15207
    Mikhail
    Moderator

    Channel 101 is the source channel.
    Channel 102 formula: EveryMin(() => IncIfOn(101, 103))
    Channel 103 stores the cumulative value.
    Channels 102 and 103 of the Calculated type.

    Add to the Scripts table

    public CnlData IncIfOn(int cnlNum1, int cnlNum2)
    {
      if (Val(cnlNum1) > 0)
        SetData(cnlNum2, Val(cnlNum2) + 1, 1);
      return CnlData.Empty;
    }
    

    Note: the above is not tested.

    Mikhail
    Moderator
    in reply to: Seeking Ways to Give Back for RapidSCADA #15205
    Mikhail
    Moderator

    Are there any other ways I can support your work, or is there a donation option available?

    In addition to the above:
    Donations are appreciated. Please text us by email to make a donation.

    You can also help us with translation into Chinese. There are Chinese language files in the language pack. If you find errors in those files, please send us an updated version, so we can include it in the language pack.

    in reply to: Request to Upload RapidSCADA 6.0 Videos to Bilibili #15204
    Mikhail
    Moderator

    When you done, please post here links to Bilibili.

    Mikhail
    Moderator

    To check the communication line log, navigate to Line Stats – Line Log, or find the file lineXXX.log
    Then find in the log a moment when you send a command.

    in reply to: Daily Time Counter #15194
    Mikhail
    Moderator

    Hi,

    If the channel 101 changes not too often, you can measure it’s value every minute. If it’s 1, increase the channel 102. Does this method fit your needs?

    Mikhail
    Moderator

    Also check the communication line log after sending a command to get a error message.
    Please provide a screenshot of the Modbus template.

    Mikhail
    Moderator

    That’s true.
    New Scheme Editor for version 6 is under development.
    Check the version history.

    in reply to: Request to Upload RapidSCADA 6.0 Videos to Bilibili #15191
    Mikhail
    Moderator

    Many developers in China are unable to access YouTube due to network restrictions. To help them, I kindly request permission to upload the RapidSCADA 6.0 video tutorials to Bilibili, a popular video platform in China.

    I assure you that all copyrights will be respected. The original content will remain unaltered, and full credit will be given to RapidSCADA, including links back to the original videos.

    Yes, you can upload the videos providing the original links.
    Is there an option to download videos from Youtube automatically and upload to another hosting?

Viewing 15 posts - 871 through 885 (of 6,270 total)