bagged2drag

MrPLC Member
  • Content count

    44
  • Joined

  • Last visited

Community Reputation

1 Neutral

About bagged2drag

  • Rank
    Sparky

Profile Information

  • Country United States
  1. smc2 ESI and IODD files

    Thank you.  I verified current programs match (change management is strictly controlled where I am), so I will proceed with my changes.  I appreciate the information.
  2. smc2 ESI and IODD files

    Would I simply be able to make modifications to the program and download the project to the HMI/PLC (whichever is applicable) then with no adverse effects?     -Kris
  3. I come from an AB background. My current job has a lot of Omron devices. We have a couple systems with NX102's with numerous IO link devices attached (IFM 1332, and some IO link sensors). I have the backup files from the integrator (.smc2 files). If I import the .smc2 files into Sysmac Studio and open the projects, will I need to manually add any of the .esi and IODD files to the project, or will they be loaded in automatically from the backup? The integrator alluded I will need to manually load the IODD files, but the IFM 1332 devices, for instance, appear to be loaded ok.  It appears the files may be present, but I want to be sure prior to trying to update the HMI's, as downtime needs to be considered.  Also, I have some banner sensors that are IO link. if I do need to add the IODD files for those devices, where do I add them? I assume these are IO slave devices? I don't see any configuration for them in the project, but again, the integrator alluded to the fact I will need to load these IODD files. Thanks,   
  4. Thank you.  I reached out for a quote this morning.  Quite the tax, indeed!   I don't use PV'+s anyway, but I can use my SD cards for my current HMI's too.    Regards
  5. Hello, I am looking for some input.  I have a 1769-L18ER-BB1B in which I have a some projects that I am saving to SD cards.  I have saved a few already successfully, but when I went to save the latest sets, I keep getting an error that there is insufficient memory on the SD card when I select to store in Logix 5000.   I am using software version 32.011.  I have purchased 2GB Transcend SD cards and these have worked just fine before, but now I keep getting the error.  I verified the cards are empty and still formatted FAT16.  I have been using the same software revision and firmware revision for all programs.     Regards, Kris
  6. HMS Communicator network issue

    Oddly, shortly after I posted this, I decided to check the other PLC program, and indeed, the HMS communicator was also configured in that PLC as well with the same communication settings.  I am guessing the machine builder just reused and modified the same plc program for the 2nd fixture.  Next time I get to tha plant. I will be uploading an update with that device removed from the configuration.
  7. Hello,  We have a system a vendor built which utilizes a Compact Logix PLC and a peripheral piece of equipment tied in via use of an HMS communicator.  This system is also on the same network as 1 or 2 other plcs (depending what job is being run).  The 3 plcs share some handshaking signals via produced and consumed tags.  The system works just fine aside from 1 issue I don't seem to be able to resolve yet.   When we boot up the system with the HMS communicator, we are not getting any data back and forth between the PLC and the HMS communicator if either of the other 2 systems are plugged in at bootup.  Occasionally, even if the other 2 systems aren't hooked up, we also experience the same issue at bootup only.   This issue is easily rectified if we momentarily unplug the other PLC's physically.   Connection is immediately restored and works fine after.  I had looked at all settings I know to, but I don't see anything that could cause this.  I have set Unicast to disabled in the HMS device communication settings within Logix5000, thinking that it would help (which it has, as before we would often have the issue frequently when the machine was operating without the 2 additional systems hooked up).    Any ideas what I should be looking for?
  8. Rename tags in Siemens TIA Portal V13

    We had a computer failure in our facility and lost our latest backup from a project loaded in a machine.  I have an early backup, and I uploaded the program from the machine.  I would like to rename all the tags from the upload, as it is a bit older PLC so it didn't retain the names.  I figured I could open the db from the old program and just copy the tags and paste in the new program, or simply rename the tags in the new upload, but I am unable to.  Is there a trick? Do I have to be online with the PLC to do this? Or is it just not possible.  If i recall, it is an S7-300 (315-2 PN/DP).   I don't have access to the machine for some time, as I am working from home.  I thought this would be a good opportunity to fix the program.
  9. Part tracking - counting rejects

    I did very similar to what you suggested last thursday and it worked out well.  I got rid of the for loop and utilize an add instruction with a DINT, driven off a timer.  When the timer.dn bit is on, i increment the DINT 1(every 5ms).  I use this dint to look at which position in my tracking array to count.  I then add the value of the array position to a separate integer.  When my position integer hits 101 (I am only counting 0-100 using a limit test in the logic), I move the value accumulated to a new integer which is what I use in my logic for my alarm.  This all worked super well.  My initial struggle was counting the value in each part of the array.  I used indirect addressing to do it.     
  10. Platform:  Logix5000 I have a relatively simple task I am trying to complete.  I need to track the status of a 100 part sequence to see how many parts have been rejected.  Essentially, I need to keep track of the last 100 cycles and count how many parts of the last 100 have been vision rejects.  I have written most of the logic, using FIFO with an integer with an array of size of 100.  Where I am getting stuck a bit is how to accurately get the count of the array.  I did make a for statement which will count the array and add it to a counter if the first bit is equal to 1, but this doesn't seem to be a clean way to do it, as I would also need to clear that counter before running the for statement.     Thanks,
  11. Click PLC and Keyence SR1000 barcode reader

    I was able to get this partially resolved yesterday afternoon.  So far I am able to send commands to the SR1000, and it is responding as expected.  Now I will work to get the data back, as that doesn't seem to be working yet.  
  12. Click PLC and Keyence SR1000 barcode reader

    That could potentially be the issue.  When setting up the send command, the click is quite a bit different than the AB.  There is a checkbox for the termination command however; there is the choice of 1 or two characters, and hex only.   I will give that a try next time I get out to the equipment.   They give you an option of choosing the term from a table.   didn't notice that the first time.   I'm more used to robots where you just type [CR].        
  13. Click PLC and Keyence SR1000 barcode reader

    Correct, pcmccartney1.  The LON ascii command is what I was sending to trigger (read).  I was getting a write success bit back on the plc, but I was not seeing the camera trigger.  LOF is the trigger stop command.  If I opened terminal on a PC, the same LON command starts triggering the camera.  LOF would then stop triggering.  That's where my confusion (lack of knowledge and experience) comes in.  Why would I get a write success on the PLC?  Does the write success ignore any sort of feedback?
  14. Click PLC and Keyence SR1000 barcode reader

    You are right, there is an RS485 port.  The programming port can also be used as RS232.  Hopefully NevergoldMel can chime in.   I've used RS232 on the Click before, but never for ascii (you have to choose ascii or modbus  protocol with the click).  My send and receive show up as successful, but I am not seeing any data (send isn't commanding the picture).  I think the issue is more on the side of the Keyence.      
  15. Has anyone interfaced an SR1000 (or similar keyence barcode reader) with a (Automation Direct) Click PLC?  I am looking to read/write rs232 so I can get the string back from the barcode reader, instead of actually teaching it or using banking (banking is a bit cumbersome with the keyence, plus it'd take me a long time to actually get the labels I need to teach the camera all).  I had started messing around with the application, but I have no way of seeing if the camera or plc is actually reading/writing the data.    Data is all ascii.   Thanks,