manjey73

Forum Replies Created

Viewing 15 posts - 796 through 810 (of 921 total)
  • Author
    Posts
  • in reply to: formula input #5008
    manjey73
    Participant

    Divide formulas into several channels. If the formula returns double, you can use one formula inside another.

    for example

    NOT(OR(Val(100), Val(101)))

    public double NOT(double val)
    {
        bool boolVal = val > 0;
        return Convert.ToDouble(!boolVal);
    }
    in reply to: formula input #4987
    manjey73
    Participant

    Logical And

    public double AND(double in1, double in2)
    {
    bool q = false;
    bool i1 = in1 > 0;
    bool i2 = in2 > 0;
    q = i1&&i2;
    return Convert.ToDouble(q);
    }

    in reply to: formula input #4983
    manjey73
    Participant

    Judging by the logic you want to get logical OR ?

    Add formula to formula table

    public double OR(double in1, double in2)
    {
    bool q = false;
    bool i1 = in1 > 0;
    bool i2 = in2 > 0;
    q = i1||i2;
    return Convert.ToDouble(q);
    }

    Use in channel OR(Val (n), Val(m))

    • This reply was modified 7 years, 2 months ago by manjey73.
    in reply to: Mobile client and Rapid SCADA #4829
    manjey73
    Participant

    1. to do this, you must have an external static IP address for your server (router)
    2. Perform the necessary router settings to access your services from outside

    If this is not possible, use third-party services such as TeamViewer and others

    Remote access is already a task of IT sphere, not Scada as such.

    For example I have a dedicated static IP address. I connect to my router VPN client and see the entire internal network as if I was connected inside the network via Wi-Fi and moreover, the IP address on my phones to determine the third-party services becomes the same as when connecting VPN traffic begins to pass through my home router. Sometimes it is useful for sites that require access settings from certain IP addresses and will ignore you if the addresses are carrier-based.

    • This reply was modified 7 years, 3 months ago by manjey73.
    • This reply was modified 7 years, 3 months ago by manjey73.
    in reply to: Error data fire system #4822
    manjey73
    Participant

    KpModbus_test

    Try this library. If your device does not respond due to zero ID, it should work. In the future, Mikhail promised to add an identifier change in the release version of the library.

    If so, this is the second device that does not accept a null request ID.

    Still you have the difference
    00 25 00 00 00 06 01 03 00 00 00 0A
    00 00 00 00 00 06 F6 03 00 00 00 05

    • This reply was modified 7 years, 3 months ago by manjey73.
    • This reply was modified 7 years, 3 months ago by manjey73.
    • This reply was modified 7 years, 3 months ago by manjey73.
    in reply to: How to run communicator graphical user interface #4718
    manjey73
    Participant

    After the launch of the device and the Server, the shortcuts of the active application appear in the System tray

    in reply to: How do I build a chart with a 1 week span? #4701
    manjey73
    Participant

    https://ibb.co/pn3NmjS

    On ChartPro you can get a demo key and try what he can.

    in reply to: Generate Event using formula #4668
    manjey73
    Participant

    In fact, you can create new statuses in the database and assign thresholds to formulas that will change the status of your new notifications.

    Dictionaries – Event types

    in reply to: Simulate a Modbus master and slaves communication #4661
    manjey73
    Participant

    RapidScada communicates with Modbus devices as well as other programs. Through registers described in the DOCUMENTATION for the device. But through pictures alas no one not able to communicate. You need documentation for the device, the picture you showed.

    in reply to: Bit Toggle #4642
    manjey73
    Participant

    Probably your problem can now be solved using only the module, I did a long time ago and I had to use different formulas in conjunction with the module. For example, with the help of the module I had to set up an extraordinary survey of the device for feedback, now this feature is provided directly in the Communicator when sending a command. Check out the documentation and try the demo mode to get started.

    in reply to: Bit Toggle #4641
    manjey73
    Participant

    This can only be done when using the Automatic Control Module.
    If you need an example, I can a little later to put.

    http://doc.rapidscada.net/content/en/modules/mod-auto-control.html

    But this module is paid, but it’s worth it.

    in reply to: Change event sound #4634
    manjey73
    Participant

    http://demo.rapidscada.net/plugins/Store/Store.aspx

    Sound Alarm Module The module plays a sound in case of alarm.

    Isn’t that what you need ?

    in reply to: Database Admin on Raspberry Pi #4621
    manjey73
    Participant

    Or copy the database on a Windows PC and then back. Or use the Agent in the latest version of Scada

    Agent

    • This reply was modified 7 years, 5 months ago by manjey73.
    in reply to: M-Bus Protocol driver #4526
    manjey73
    Participant

    The cost of$ 30 or 50% discount when providing logs devices

    Driver_Mbus

    in reply to: Reading bits #4508
    manjey73
    Participant

    in Calculate Discrete – GetBit(Val(434),x)

Viewing 15 posts - 796 through 810 (of 921 total)