Sergei Troizky

MrPLC Member
  • Content count

    752
  • Joined

  • Last visited

Everything posted by Sergei Troizky

  1. Thank you for the reply. IIS is not enabled in the Windows features. The question remains open. I am running Windows10 Pro.  
  2. We are using FactoryTalk Studio ME and never installed FactoryTalk ViewPoint. Nevertheless, it suddenly appeared installed and certain IP addresses are now automatically redirected to .../ftvp/ViewPoint.aspx How to remove this association? I've uninstalled the FactoryTalk ViewPoint, but the redirection continues.
  3. Entering multiline string in FTView Studio

    It is not about how the text looks on the display. I need to insert the line terminator into the string tag, while entering text from the display. There is no Ctrl key on the PanelView Plus7 display keyboard.
  4. Is there a way to enter multiline string in "String Input Enable" object? The tag monitor in Logix Designer allows this by inserting $R$L, but how to do it from the PanelView display?
  5. I am using CompactLogix 5370 PLC (1769-L36ERM) and Studio5000 v30. The help file mentions function blocks, but there is nothing related in the software, only Add-On Instructions. AM I missing something?
  6. The 1769-SG001 manual says: "Check the specification table of each module for the power supply distance rating. This rating indicates how many slot  positions the module can be from the power supply." The CPU power supply distance rating is "4 modules". Does this mean 4 modules are allowed between the CPU and power supply? Or the CPU to be maximum the 4th slot from the power supply?
  7. CompactLogix power supply distance

    This machine is now comissioned with no problems.
  8. CompactLogix power supply distance

    I would also assume so, to be on the safe side. But I've seen working equipment with 4 modules between the power supply and CPU. I need the same for my project this time, so looking for more definite answer. It's ridiculous that such a simple thing is not specified unambiguously in a technical manual.
  9. Do it well from the start. It will go bad by itself.

  10. What is "Unwired terminal current capacity"?

    The I182E "NX-Series I/O" manual mentions "Unwired terminal current capacity" in the unit specs. What is the meaning of this parameter?  
  11. CJ - Adding several consecutive floating points

    In my opinion, 20 instructions do not worth organizing a loop, not to mention FB. Configure the output instructions to be shown horizontally, and 19-instruction rung will be of reasonable size. And each register value will be on the screen for immediate monitoring.
  12. I have a protected task in CJ2M, and have to download by tasks. However, some unprotected task selection boxes for transfer are greyed, and cannot be selected, while other unprotected tasks are selectable. What may be a reason of not allowing unprotected task transfer. All unprotected tasks were never protected. No UM protection.
  13. CP1L-EM

    I would try Start code (( (0x2828) and End code )) (0x2929).
  14. Issue Converting to String

    STR8 converts a 8-digit hexadecimal number to ASCII string. Convert DINT to BCD first, using BDSL instruction.
  15. OMRON CJ1W-ETN21 Node Number

    ANdrejP, If you are connected to the PLC, its IP address is known. If the NODE selectors are in discrepancy, PLC is in error. If no such error, the NODE selectors are set exactly to the last octet of the IP address, keeping in mind that the IP address is decimal, while the selectors are hex. For FINS node number, which is typically the same as the last octet of the IP address, but not necessarily, open I/O table, double-click the unit, upload the port setup from the unit and see the IP address table under the FINS/UDP tab.
  16. Average value

    The OP clearly mentioned INT. And since this is signed 16-bit integer, it tops at (2^15-1)=+32767. Unsigned 16-bit would top at (2^16-1)=65535.
  17. Average value

    Every time the summarizing register reaches certain threshold (the larger, the better), just divide it and the seconds by 2. The average remains the same, the measurement resumes correctly. The register will never overfill.
  18. cx programmer

    I will repeat Pturmel's question: Why are you using BCD? BCD was useful during the era of 7-segment indicators and thumbwheel switches, and is supported by Omron for backwards compatibility with old projects or PLCs. There is no reason nowadays to use BCD representation. Go binary mode.  
  19. Since there are no SBN/GSBN instructions in ST?
  20. Sysmac Studio Data Types list?

    In the W501 Software User's Manual, section 6-3-5 "Data types".
  21. setting my counter to a specific starting number

    This sentence makes no sense to me. If all you need is to force a counter to specific value, do it by MOV instruction.
  22. day counterdown

    The question is not clear. Do you need to calculate a date that is 365 days before a set date? If so, use CSUB instruction and subtract 8760 hours, which is 365 days.
  23. Sysmac Studio Improvement Request

    These are improvement requests, exactly as the topic name says. Exactly because I am perfectly aware this is not possible now.
  24. Sysmac Studio Improvement Request

    PLC program: - If cross-reference is done on indirectly-indexed variable, its directly-indexed instances are found, but not vice versa, - Local/global selection should exist when a new variable is created automatically during online edit. - Allow deleting unused variable while online.