manjey73

Forum Replies Created

Viewing 15 posts - 61 through 75 (of 974 total)
  • Author
    Posts
  • in reply to: Error Communication Failed #17829
    manjey73
    Participant

    Yes, if the address requires 0 for the device, this may be the reason. Another option is to send a broadcast address to the device – 254 or 255 in Modbus mode when it is connected to TCP. Such things should be specified in the device documentation.

    in reply to: Error Communication Failed #17826
    manjey73
    Participant

    And start with one register, specifying in the settings to start with 0 or 1. Do you also have the exact device address = 1 ? Depending on the device, the device ID may be ignored in Modbus TCP mode, or it may have to correspond to some value.

    in reply to: Error Communication Failed #17824
    manjey73
    Participant

    Disabling the firewall does not mean that packets will be skipped.

    in reply to: Error Communication Failed #17820
    manjey73
    Participant

    and actually show the device configuration in the configuration database.

    in reply to: Error Communication Failed #17819
    manjey73
    Participant

    show the log of a specific device. what data goes into it. is the device responding or just a timeout error?

    show the line and device settings.

    in reply to: Error Communication Failed #17817
    manjey73
    Participant

    If you don’t see any bytes transmitted from the device in the log, then there is a problem with the connection.

    in reply to: Mobile resolution or view #17795
    manjey73
    Participant

    As far as I know, no. I made a mnemonic specifically for the vertical version of a mobile device and created a second user specifically so that they could connect from a mobile device. Then he scored đŸ™‚

    in reply to: Entering future data #17788
    manjey73
    Participant

    – Will you have yesterday’s soup?
    – Yes, of course.
    – Then come back tomorrow. đŸ™‚

    In order to write into the future, this future probably needs to be created. You can’t do this with scripts like that. It also doesn’t seem to be possible to read database data using scripts. But is it possible to rewrite the channel data all the time so that these values will be relevant tomorrow?

    in reply to: Help with Remote Access to Webstation (External Devices) #17777
    manjey73
    Participant

    Do you have a router? To log in from the outside, you need to configure port forwarding on your PC with a web server port 80 or 10008, depending on your settings. A static external IP address is required, which the router will receive.
    You may also need to configure the firewall.

    manjey73
    Participant

    If you have a Windows system and the Server is both an operator’s computer, then you can use the sound module.

    ModAlarmFork

    If Linux or everything is separate, the web client connects remotely. The option is to use the Auto Control Module and somehow play with scripts. Another option is to add your own html page with sound to the i-frame on each page and show it when there are events, and then use a script to repeat it. In general, I have not tried these options in any way. Maybe the developer will tell you something.

    in reply to: can we implement pop-up messages on scadaWeb #17732
    manjey73
    Participant
    public double CheckComm(double min, double max, double mult, string str = "" )
    {
    if (Cmd < min || Cmd > max) throw new Exception($"The value must be within {min} - {max} {str}");
    return Cmd*mult;
    }
    
    public double CheckComm1(double min, double max, string str = "" )
    {
    if (Cmd < min || Cmd > max) throw new Exception($"The value must be within {min} - {max} {str}");
    return Cmd;
    }

    Commands have a mode where you can raise an exception.
    I made myself two formulas for convenience.

    CheckComm(16, 32, 10, "degrees")

    manjey73
    Participant

    An XML script is the result of an export from a script table. It needs to be imported, not copied as it is. XML is saved in UTF-8 format, so there should be no errors due to the operation of the site, etc.

    manjey73
    Participant

    ExportTON

    try to import

    manjey73
    Participant

    You may have picked up extra characters. You need to make copies of windows framed with the CODE tag. For example, if you copy the code that you copied here, we get an error because the site changes some characters to others.

    manjey73
    Participant

    Strangely, I copied these scripts to a new project, and there were no similar errors with saving XML.

Viewing 15 posts - 61 through 75 (of 974 total)