manjey73

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 963 total)
  • Author
    Posts
  • in reply to: Error Communication Failed #17839
    manjey73
    Participant

    Destination Port: 50060

    Why would that be?

    in reply to: Error Communication Failed #17837
    manjey73
    Participant

    copy the contents of the response from wireshark to modbus parser from the data block and find out. if there is an adequate response, then configure the firewall.

    in reply to: Event beep #17831
    manjey73
    Participant

    However, this will require advanced Mimic components (paid), specifically ExtraMarkup from the components.

    in reply to: Event beep #17830
    manjey73
    Participant

    You can create a circuit in the new Mimic editor and make the sound play cyclically while the page is open.

    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")

Viewing 15 posts - 46 through 60 (of 963 total)