IO_Rack

MrPLC Member
  • Content count

    1695
  • Joined

  • Last visited

Everything posted by IO_Rack

  1. Omron to AB EtherNetIP Explicit Messaging - PLC Sample Code - Forums.MrPLC.com This can be done implicitly as well but it seems to be missing from the downloads section. Found it. CJ to CompactLogix Implicit Messaging - PLC Sample Code - Forums.MrPLC.com  
  2. The system software comes with the NTST install. Do you have the Japanese version of the software?
  3. DUPLICATED OUTPUT WARNING

    Click Show Address Reverence Tool (Alt+4) then click on 101 in the ladder program. It is programmed as an output somewhere in your program. 101 may show up as 101.00, 101.01, ... 101.15.  I see you have multiple warnings. You could also scroll through your warnings and look for WARNING:  Duplicated output - OUT 101.xx at rung (x, x).
  4. Sort Array in HMI for selection

    Read an array of strings from NJ to NA - NJ Series / Sysmac Studio - Forums.MrPLC.com  
  5. "Clean up" warnings?

    You could make a rung to read these variables into a dummy variable. Alternatively, you can turn off this check function. Tools > Option > Program Check/Build > Ladder Program Check.
  6. NP designer

    Register at Omron's website and download it for free.
  7. Memory does not load automatically when you open the backup file. From the PLC Memory dialog, Monitor ON will show you values currently in the PLC. Monitor OFF will show you values that are saved (if they are indeed saved. It will indicate with a red check mark). You'll need to perform a transfer. It looks like your serial question is being worked on in a separate thread.
  8. Try reloading only retentive memory and only the memory that will require. In most cases this will be D & H. You can perform a Cross Reference to see what is used in your program. Also, avoid transferring memory from certain locations as they are used for the PLC setup. 
  9. OMRON CJ1W-ETN21 Node Number

    How are you connected? I would think your CX-Programmer Network Type Settings would have this information if you are connected. If the last octet of your IP does not match the FINS Node Address then the conversion type must be "IP Address Table" rather than "Auto". Is there another PLC or device on the network where you would be able to see the FINS Node Address? Unfortunately, I was unable to find the information you are looking for.
  10. The CR will happen when you press Enter. I haven't used Hyperterminal in a while but there is an option somewhere to "Send Line Feeds with Enter" or something like that. I would use RealTerm. It's a free download from Source Forge. This program gives you a lot more control and visibility to these invisible characters. 
  11. You'll need to convert it to ASCII. Data from an NX102 to Excel - NJ Series / Sysmac Studio - Forums.MrPLC.com  
  12. PID Control Function Block/Example

    Check the downloads section of this website. There are several. PLC Sample Code - Forums.MrPLC.com  
  13. CIPread error

    I would agree that Implicit would be best. If you must perform an Explicit message, I would suggest using the CIPUCMMSend instruction. You wont need to use the CIPOpen or CIPClose.
  14. I've never connected a GOT to Omron before and I don't know much about the GOTs.  From the Omron PLC side, default serial parameters are 9600, 7, E, 2. If you change any settings, make sure to cycle the power to the PLC.
  15. The problem with the AVG instruction is it collects samples based on PLC scan time. In many cases, this is too fast to do proper averaging for a live signal. Using a timer does not work because every time the AVG instruction turns OFF then ON again, it starts over from the beginning. So, you are correct, it's the wrong instruction for this purpose.  This is a rookie question but you don't have to be sorry for it. There are many here that are willing to help out.  I'm not sure any PLC manufacturer has the perfect instruction for this so most programmers will do it with simple math. Collect and store x amount of samples, add them together and divide by x. Use a timer to collect your samples and play around with the sample time. Obviously, the longer the sample time, the longer your analog update time. There are other methods using simple math so have a look at this search and don't be afraid to look at other PLC manufacturers.  smooth analog signal site:forums.mrplc.com - Google Search  
  16. Change Subnet On CP1L PLC

    I'm Mr. Walsh will reply but in the meantime, I remember someone having issues when using a subnet outside of the typical 255.255.255.0 range. I don't know this is the same issue but see this post: CJ2M Ethernet IP error F3 - Omron - Forums.MrPLC.com  
  17. Backing up SYSMAC CQM1 CPU41

    Once you are connected, you'll need to perform the backup. I don't remember if the PLC Backup Tool works with the older PLCs but you can try. Tools > PLC Backup Tool. The alternative (or both if you wish), is to upload the program via PLC > Transfer > From PLC... You may check all the boxes but the following will supersede: Double click Memory from the project tree then open DM, HR and AR. Perform a Transfer From PLC. Be sure to check all (or entire range, or something like that). Then make sure to Save in Project. The above memory locations are retentive memory. DM will contain very important information on the PLC settings, I/O configuration and special I/O unit setup if any exists. In addition, any of the locations may contain settings that could be important to the specific machine or process.
  18. Foreign Comments

    Conversion of Comments from Japanese? font - Omron - Forums.MrPLC.com  
  19. latest cxone installer ?

    You can register on Omron's website and receive it via email but it may be faster and easier to call technical support. They have provided me with temporary links in the past. 
  20. NT631C Ver 3.62

    NT Support tool (NTST) 4.85 registry fix - Omron - Forums.MrPLC.com  
  21. cx programmer

    Use "=L(301)". CX Programmer and Omron PLCs are very flexible but you must be mindful of your data types. Apples to apples.
  22. GSV instruction. Class Name:  ControllerDevice Attrubute Name:  Status
  23. We had this issue years ago. I would have to think it's an issue with the NA5. At the time I put an unlatch instruction for all the push buttons after triggering a one shot. This won't work for any momentary actions you require obviously. It may have been an issue with an earlier firmware because I haven't seen the problem in quite a while. I also remember this being a known issue in an earlier version of Wonderware Intouch. 
  24. How to Download Program From memory Cassette

    https://assets.omron.eu/downloads/manual/en/w364_cqm1h_series_programming_manual_en.pdf Section 3-11 in this manual. Please let us know what trouble you are having.