pfort

MrPLC Member
  • Content count

    398
  • Joined

  • Last visited

Everything posted by pfort

  1. Invert scale 0-990 --> 990-0

    From 990, substract your value that you want to invert and output to the word you want the inverted value.
  2.     Maybe something that would help you understand the PLC scan: The basics
  3. PID problems

    Are you aware that the 2 PID instruction (loop 1 and 2) output to the same word D4091?
  4. After 17 years with CXP, my first contact with Sysmac Studio. PLC is a NX1P. 1: Where I am supposed to find the system variables? (Always ON, First scan, timed pulses, etc...) They are not in the Global Variables and I can not find them.  2: Is there an equivalent to the custom keyboard mapping option of CXP?    
  5. There are many ways, here is one I like:
  6. Once Online you can upload the program, but with the CQM1 you will not have the comments.
  7. I think that the PLC Backup Tool is not something available for CQM1. Anyway that is not the way to connect to PLC's. Instead, go to -->PLC --> Work Online (Or Ctrl+W).
  8. Please help me analog in-output

    And...?
  9. Please help me analog in-output

      I think it's not available for your CPU.
  10. cqm1 timer problem

    If the timer is not started yet, then it should start with  your new SV. MOV does not work so I guess you  have a CQM1 or otherf old serie PLC...
  11. cqm1 timer problem

    On the same scan that you write #10 in your word 60, you could turn off the condition of your timer. Or, you could change the PV of your timer. (MOV #10 TIM2) (1 scan only)
  12. Omron PLC-How to set address of I/O

    Manual here
  13. cx simulator

    You can not use the simulator for a CPM2A. That's why your simulator menu is grayed out. Hint: You could convert your code to CP1L serie and it will work in simulator.
  14. cx simulator

    You did not mention the PLC (Not all PLC can run the simulator)
  15. CP1L and PID or PIDAT

    Not sure of what you want to do, but I often use it with TPO instruction to convert it's output into pulses for SSR.
  16. Program a bell with the clock on CJ1M-CPU11

    Not all CP1E have RTC (clock). What is your PLC model?
  17. high speed counter ct021 negative reading

    Your question either is not clear. Do you mean your count decrease instead of increase? If yes, then just swap phase A and phase B connection of the encoder...
  18. high speed counter ct021 negative reading

    Did you read this?  
  19. Multi-Function Button "Grayed Out"?

    I meant "System Version". I think that Multifunction Button need version 7 or higher. I see in your screenshot that you have System Version 6.2 You can upgrade System Version, go to menu: Tool/Convert/Version
  20. Multi-Function Button "Grayed Out"?

    What model and sytem version do you have?
  21. OMRON_Communication via WI-FI

    I don't find it on Google Play.   Edit: OK, found it now...
  22. I know there is a way to connect without knowing the IP address, but for some reason I would like to know if it is possible to read the IP address in the PLC memory. I looked in "A" and "D" and did not found. In the W516-E1-01 manual, appendix G, there is a mention about internal addresses 173 and 174. How can we access theses internal addresses?
  23. How to use plc clock in programming

    That is why I prefer the ANDW instruction.  1 instruction instead of 2.
  24. I don't have Syswin here at home, but here is a screenshot of what it could be with CXP:     You should take a look in this manual: Programming manual
  25. KEEP madness

    Nothing to do with the KEEP instruction. I think that it's because your section with subroutines (Section called "encoder") should be at the end, just before the "END" section.