Search the Community

Showing results for tags 'plc programmer software'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Found 209 results

  1. Hi, I'm new to the Omron PLC, we have a job that require we change the balluff master port from IO link to Stander IO output, i read some resource online saying that it has to be done though the cx configurator, i followed the instruction and tried to remove the module connection from the cx configurator and change the parameter and add it again. during this sequence i encounter some problem, the IO size for balluff master module is 392byte input and 262byte output, i've tried to add input though D17350 and output though D17550, i was only able to add one of them successfully, when going to the other one the softerware came  up with a error saying the it exceed the total tag size that the device supported, i tried to decrease the tag size but it would now match the device IO size when i tried to register it. all i need is to change the module's function from IO link to stander IO, hope someone has experience in these area can provide me some help Thanks     
  2. Hello, I am trying to use a PID loop to correct a concentration reading that can be too high or too low. I want to add or subtract my MV from my current device set point and that will correct the concentration. I have never used a PID loop in this way and it is not working like I had hoped, currently I am flipping the PID direction between forward and reverse depending on the direction I need it to go and then subtracting or adding the MV from the current set point. Has anyone achieved similar PID control and if so could you please offer me some tips on the best way to do this? Thank you!!          
  3. PT property NB series

    hello everyone, I want to ask this setting. If I check this check box, what will happen to the program that I input into the HMI? can someone give me examples for not allow upload and not allow decompile?
  4. Siemens Logo PLC

    Hello Experts Can someone please tell me if Communicating software for Siemens Logo PLC is downloadable? Regards
  5. Ok I'll try a different angle of attack. I have acquired an S7-1212c unit. It is just too new for my TIA portal, which is V 15.1 The new PLC I have has firmwear 4.5 the TIA portal I have only supports 4.3, I get some errors regarding synconization etc. and it's like there are some tins that don't work. how do I update the TIA portal to the correct firmware I've tried updating the HSP files but it doesn't change anything https://support.industry.siemens.com/cs/document/54163658/how-do-you-update-the-hardware-catalog-in-tia-portal-?dti=0&lc=en-DE
  6. Dear Experts We have a machine with Allen Bradley Micrologix 1400 PLC, Panel View C400 Request to share communicating software and cable details please  Regards
  7. Hi everyone,  I recently started in the automation industry and am currently working on an Omron project.    So I have two programs, one on Sysmac Studio (which has the HMI) and the other on CX-Programmer. I am trying to simulate both simultaneously using the Sysmac Studio HMI. Is there any way I can do that where for example I can toggle stuff on and off from the Sysmac HMI and get feedback from the CX-Programmer ladder?    Thank you in advance. 
  8. Salutations! So recently I'm very confused with my CX-Programmer. Everytime I tried to run the Simulator from CX-Programmer, I always got a notice that a certain program called KickEngine.exe is about to Run. I look up for this program and found it inside CX-Simulator folder, so I decide to run it anyway. The problem is the simulator always return the error : "The selected port does not exist". In other words I cannot run the simulation. I understand that the simulator uses ControllerLink comm. between CX-Programmer and CX-Simulator, so I tried to run those two separately and build the connection, but also to no avail. Even so, since CX-Programmer 9.0, I believe there is no need to run the programs separately. Before I had a similar problem where the simulator cannot be run, and the error code is "Failed to Start Ladder Engine". This was solved by removing whole Omron software using CX-Remover, then reinstalling again. However, it doesn't solve the current problem. If possible I don't want to resort to reinstalling the whole OS... T_T Anyone has suggestions or ideas? I had lookup on an older thread and tested the measure taken there, and didn't solve this. Thanks!  
  9. Hello there, I am new to the forum and had a question regarding a setting in Sysmac Studio.   In the Basic Settings for my NJ301 there is a setting on this particular line that is set differently than the other lines I have worked on. This setting is called "System service execution time ratio". On all the other lines I have worked on it was set to 10%, on this line it's 25%. This line also seems to have the most issues with controller performance out of all the lines I have worked on despite having less complexity. I was wondering if anyone knew what this setting actually does and if it should be changed.   Thank you.  
  10. problems with CP1H analog input

    i am new to cp1h and have problems with getting analogs signals inn from input 200
  11. Hi all, I'm not shure if I saw it once, a Spanish site with a rugged I/O shield for an arduino plus a software package to build an Arduino-PLC packet. It was pretty much $$$ raised... (on my oppinion, for my application, not to dispretiate their value). Has anyone thought of it or knows of such an ensemble: A general Arduino board, a general kind of "plc-shield" (some inputs, some outputs,...) and finally, a (preferably open-source) software package to make an off-the-shelf Arduino-PLC ish? Maybe it all exists with some name changes, or this question is of a huge ammount of ignorance. Thanks. Corvo (means Raven) 
  12. Is there an efficient tool to manage and validate CX-Programmer addressing. Requirements: - Highlight Duplicate Address allocation - Compact/Defrag address range to avoid wasting memory space. Note: - Any FINS addressing will have to be reconfigured - This approach assumes symbol use rather than direct addressing in the logic.
  13. I am trying to use Reusable files, but it is greyed out. Is there a setting that needs to be enabled to activate it? I am using CX-Programmer v 9.74 Update 1: Apparently, when you create a data structure this gets greyed out  
  14. Array A INT[32] Array Index B INT Destination C INT I am trying to move an Array (A) Element (A[2]) using a symbol (B) in ladder into a destination symbol (C) C = A [ B ] Result: ERROR: Array Index of Operand 1 out of range at rung 1 ( 6, 0 ).  The documentation suggests that it is possible, but I am unsure if there is something I am doing incorrectly. Note* Fixed indexing works with no errors Is there another method to accomplish this?   PLC : CJ2M CPU31 CX- Programmer: Verion 9.74 Update 1: If I go online to the PLC It does look like the array look up is working. Is the issue with the mov block? Update 2: I changed the memory locations which has caused a different error to appear. This error is clearer but does not explain the manual excerpt I posted further up ERROR: Only the constant can be specified for the index of the array.  at rung 5 ( 6, 0 ).  Update 3: Solution 1 I managed to hack together a proof of concept using pointers and indirect offsets  Update 4: Solution 2 For some strange reason things work as expected inside of the function blocks so I made one where the array is In-Out and with an input and output respectively. Note* External reference to pointers inside of the function block produced an error. Function block Logic     Update 5: Solution 3 Now I feel like I am going crazy, I tried just the original code again and it works... I have no idea why and if it was not for all the documentation I would be lost as to why it works now... Update 6: Conclusion It seems to have array indexing work the array index must exist in the D Memory Block. The reason it did not work above is because I somehow had a MOVR block when I tested after moving all the variables to the D Memory Block. I hope this journey helps someone else :)
  15. "PLC No Response" NB HMI Omron

    Hello Everybody, I continued to work on project this morning but I seem to be plagued with the "PLC No Response" error. This error will only come up when I assign a PLC address to a particular object.  I have followed the steps in the post(https://forums.mrplc.com/index.php?/topic/39885-nb-designer-hmi-plc-no-response-error-solved/) to try and clear the error but am having no luck. In the screenshot I have assigned the large "Start Process" as a bit button with the write address being W50.00. When the button is pressed it should trigger a bit in the PLC but this is when the error appears. During this test I am connected to the PLC and in run mode with the PLC and HMI address assigned correctly. I have read and followed the section in the manual regarding "PLC No Response" but still no positive results.  I just want to check that there is nothing I have done at a programmer end that could cause these issues. I am happy to provide files. Thanks, Ryan  
  16. GX Works 3

    Hi everybody! Recently I've got problem with installation of GXW3 on my PC There is a message "Any of the MELSOFT products or other software may not be installed normally. Please restart computer before installing this product" during installation. Of course I restarted PC)), delete all Melsoft products from my PC,  please i need your Help here ver 2.7 IQWORKS  I have Windows 10 64bit .  
  17. Foreign Comments

    I have a program that was pulled from process that came from China,i believe. the comments are complete gibberish. are there more than one version of cx programmer for different countries, i thought we were past that with the commentor, however these look like some of the old double character stuff i saw back in the old nt tools.   Thanks Joe Meyer
  18. Hi all,  I am having trouble with Cx-programmer when trying to remotely connect to a Omron plc (cj2m cpu34) using Tosibox vpn. Set up is that the Omron plc is located in customers facility and is connected to a Tosibox "lock box ", and i have the "key". From the Tosibox key side application i can see that the PLC is connected to the Tosibox lock and is available. The problem is that in CX-programmer, when i try to search for available devices (by using the PLC->Auto online-> Ethernet/IP node online)  i cant find the PLC i am looking for, or any other device connected to the tosibox network. Just gives a empty list. Before searching the cx-programmer ask's me to choose interface card, showing my Ethernet and Wlan - connections, i have used Ethernet one. I have tried matching the IP addresses in network connections settings for the Ethernet connection but for no avail. And apparently this connection has worked before, i just have no idea how it was done or what were the settings or methods they were using.  I'm not sure but i have a gut feeling that somehow the cx-programmer cant recognize (or connect to) the Tosibox vpn connection and proceeds to search without it and then of course finding nothing. Could it have something to do with the network interfaces? That when i use the Ethernet to connect, it doesn't go trough the vpn? I am not really familiar with these system so any kind of help would be much appreciated. So my question: has any one of you ever encountered something similar when dealing with cx-programmer, tosibox or vpn's in general?   Thanks in advance.      
  19. Please Help me, I want to connect aczet brand weighing machine CG203L to PLC CP1L-M. But several times I tried it didn't work, I've tried repeatedly in the settings section to adjust the baud rate and mode and have tried one by one but to no avail. Can any of your friends help? thank you
  20. GX Works3 Projectlib Locked

    Hello, I have a problem that I need to solve in a PLC program has it's projectlib locked.  I work for a company that contracted a PLC programmer before my time to program their new version of their control cabinets. The company did not write any specific contract with the contractor and just relied on his work. The guy later delevered a buggy software that is kind of functional (the bugs came up at the commissioning after the guy was paid and now he refuses to help or to provide more consultations). I have as a task to freshen this up and make it work without bugs, the problem is that the Projectlib is locked and I cannot access the source code.  The only thing that I can changes that I can make to the code is to put some logical circuits between the I/O of the already existing function blocks, which solved some problems, but not all and it keeps one of the most important ones as well. Anyways, that's my story, so now my question is, is there and possible way of unlocking the projectlib? Any feedback would be highly appreciated. Thanks in advace!
  21. Hi all, I'm new here and need an opinion from you guys on how to set the Gateway for PLC CP2E in CX Programmer ? From my discussion with supplier (OMRON), they mentioned it was unable to set any gateway for CP2E model but I found on some sources that for previous model for CP1L is able to set the gateway. Supposed to be the Gateway function can be supported by latest model, am I right ? Need an explanation on this, Thank You
  22. GX Developer

    Hi, can anyone help me please. Newbie to plc and bought a mitsubishi and was told off the ebay seller that gx programmer is free to download? I looked on mitsubishi and coukd not find it? Does anyone have a link they could help me with pls. Regards  Andrew 
  23. Omron NB Software

    I am facing the error while compiling the program , there is only 1 error , but not able to figure what is the actual error. Please suggest and support.
  24. Hello every one in this video, you will learn about Omron PLC PID Control (CX-Programmer) you could see it for free by using the below referral link for 5 days. https://www.udemy.com/course/omron-plc-training-course-fa/?couponCode=0384FB604CD8E26CDD09 I hope it will be useful for you.   Regards Mehdi
  25. How to upgrade CX Programmer Version 9.54 running in widows XP to widows 10 or higher? Really appreciate your response. Thank you in advance.