manjey73

Forum Replies Created

Viewing 15 posts - 376 through 390 (of 888 total)
  • Author
    Posts
  • in reply to: Channel with Self Increase / Decrease Value #13358
    manjey73
    Participant

    Yes, channels are processed several times in one second. Use the built-in formulas once per Second, if available. Or use timers with the necessary delay before adding or subtracting.

    in reply to: Installing Licensed Plugins in v.6.1 Beta #13349
    manjey73
    Participant

    Web – Application Parameters – Plugin Assignments

    I don’t know exactly how it is in the English version, but I think you will find it. Replace the chart opening behavior there from the usual default to the ChartsPro

    in reply to: Installing Licensed Plugins in v.6.1 Beta #13346
    manjey73
    Participant

    When working with a remote server, you need to install and configure a PC with an Administrator and on a remote server for the settings functionality to work correctly. In this case, it is necessary to register only on a remote server, where the plug-in, module or driver will work directly

    in reply to: Installing Licensed Plugins in v.6.1 Beta #13345
    manjey73
    Participant

    Copy the plugin according to the folders. Run the Administrator, do download the configuration from the server. You will see all the configuration files in the WEB tree. Open the Plugins section in the WEB tree and connect the required one.

    in reply to: Dashboard Plugin #13344
    manjey73
    Participant

    The plugin is configured for the amount that you need. The question about kits is not quite clear? It starts working in full on one web server without restrictions.

    in reply to: plugin install no activation in web #13274
    manjey73
    Participant

    In version 6
    Download the configuration from the server – to get all the configuration files in the project.
    Go to the WEB settings in the Administrator, Plugins – enable (connect) the plugin

    in reply to: add new condition ins scada scheme V5 #13215
    manjey73
    Participant

    It is better to do it through a plugin, for the possibility of transferring later to version 6. But given that version 5 is no longer being developed, you can do it directly, but it will only work in version 5. If you write directly in version 6, then after updates you will have to integrate the code again and again after each update.

    in reply to: Add new conditions #13201
    manjey73
    Participant

    Now it is not very convenient, since it is necessary to develop for the Schema Editor in the 5th version, and at the same time make the plugin for the 6th version. It will be easier when the schema editor is ported to the 6th version.

    in reply to: Copy automatic control module configurations #13189
    manjey73
    Participant

    you have to copy the configuration between the project folders

    in reply to: Convert decimal to hexadecimal from web browser #13155
    manjey73
    Participant

    It seems there were publications on the Russian forum. As far as I understand, there is a difficulty only in transferring the database

    in reply to: Convert decimal to hexadecimal from web browser #13153
    manjey73
    Participant

    Tip: upgrade to version 6, it is somewhat more flexible

    in reply to: Convert decimal to hexadecimal from web browser #13152
    manjey73
    Participant

    On the 5th version, there is no channel display as a HEX number, as in the 6th version. Most likely only using ASCII String with the corresponding transformations using formulas.

    in reply to: Convert decimal to hexadecimal from web browser #13149
    manjey73
    Participant

    Then you probably need a trigger to change the channel and specify “Send command” in the command.

    And if necessary, use the formula in the command to check the value for the range 0-100 and, if it goes beyond the range, return Double.NaN to cancel the command

    in reply to: Convert decimal to hexadecimal from web browser #13147
    manjey73
    Participant

    Trigger parameters check Value. Edit Value = 15
    Command Value = 15

    in reply to: Convert decimal to hexadecimal from web browser #13144
    manjey73
    Participant
    public byte[] NewFreq1()
    {
    string tes = Encoding.UTF8.GetString(CmdData);
    uint teu = uint.Parse(tes)*100;
    byte[] teb = BitConverter.GetBytes(teu);
    return new byte[] { 0x00, 0x01, teb[1], teb[0]};
    }

    We use the Binary command type and enter 30 and so on in string mode (not Hex)

Viewing 15 posts - 376 through 390 (of 888 total)