manjey73

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 974 total)
  • Author
    Posts
  • in reply to: Format enum with custom values #18001
    manjey73
    Participant

    when you use the Off-On enumeration and the command window has two corresponding buttons, a 0 or 1 is sent to your command as a double. Based on this, it is required to build a formula.

    in reply to: Format enum with custom values #17999
    manjey73
    Participant

    public double exsamp()
    {
    if (Cmd==0) return 0;
    elseif (Cmd==1) return 65 280;
    else return double.NaN;
    }

    there is no On or OFF in Cmd, numeric values are there, even if you use enumerations.

    in reply to: Embedded mimic does not work #17995
    manjey73
    Participant

    it may not be possible to embed mim in mim. Try FacePlate

    in reply to: Embedded mimic does not work #17992
    manjey73
    Participant

    Now it’s clear, is there a problem with transferring channels if one *.mim is embedded in another?

    Is it possible to embed mim directly into mim? it seems that FacePlate and their exported properties are used for this.

    • This reply was modified 3 months, 1 week ago by manjey73.
    in reply to: online parser: crc presentation #17991
    manjey73
    Participant

    no matter how many times I used the parser, I always focused on the fact that CRC = OK, and I didn’t even pay attention to the value itself. 🙂

    in reply to: online parser: crc presentation #17990
    manjey73
    Participant

    Well, @Mikhail can easily see his mistake. It is enough to look at the result of the CRC calculation in the Modbus driver before it is split into bytes for the packet 🙂

    in reply to: Embedded mimic does not work #17988
    manjey73
    Participant

    did I understand correctly that when you remove frames from the mnemonic scheme, then the trend component starts working for you?

    in reply to: Embedded mimic does not work #17987
    manjey73
    Participant

    you probably made a mistake with the channel number on the trend.

    in reply to: Embedded mimic does not work #17985
    manjey73
    Participant

    It is allowed to link to html in another resource, for example http://10.2.0.1:8081 but in this case, the javascript of another resource may be blocked inside the frame.

    • This reply was modified 3 months, 1 week ago by manjey73.
    in reply to: Embedded mimic does not work #17984
    manjey73
    Participant

    http://localhost:5000/Object_13 What do you have there? the link for the frame?

    if I’m not mistaken, you need to place your pages in wwwroot\custom and the link will start with /custom/myHtmlPage.html

    Do you want to download the svg directly as a link? I’m not sure that’s going to happen.

    You have Images in the project tree, so you should add an image there. Or a more complicated way, use the ExtraMarkup component.

    in reply to: online parser: crc presentation #17982
    manjey73
    Participant

    CRC Modbus – Rezult

    Enter there 10 06 02 02 00 03

    And then enter 10 06 02 02 00 03 F2 6A if the byte order in the CRC corresponded to the display of the VALUE in the parser

    in reply to: online parser: crc presentation #17979
    manjey73
    Participant

    the calculation is correct, but the displayed value is incorrect, since the CRC in Modbus is always inserted the lowest byte ahead.

    in reply to: Embedded mimic does not work #17974
    manjey73
    Participant

    Check in the browser (show code) on the i-frame element

    in reply to: online parser: crc presentation #17972
    manjey73
    Participant

    Yes, it’s wrong. I understand what you’re talking about. Displaying the CRC value in the parser.
    I very rarely use this parser, let’s hope @Mikhail will correct this moment.

    • This reply was modified 3 months, 1 week ago by manjey73.
    in reply to: online parser: crc presentation #17968
    manjey73
    Participant

    In Modbus, the lowest CRC byte always goes first, then the highest.
    A feature of the CRC calculation in the Modbus protocol is that if we send a packet along with the CRC to the calculation, we should get 0

Viewing 15 posts - 31 through 45 (of 974 total)