Groo

MrPLC Member
  • Content count

    305
  • Joined

  • Last visited

Community Reputation

7 Neutral

About Groo

  • Rank
    Sparky

Contact Methods

  • Website URL http://

Profile Information

  • Country Wales

Recent Profile Visitors

3566 profile views
  1. Newbie Help, Migrating from Allen Bradley

    The help file appendices show the detailed break down of all data types, its in the PDF Programming with Step 7. Especially helpful for the format of Pointers and the ANY data format.
  2. Newbie Help, Migrating from Allen Bradley

    What you have to get to understand is the difference between FB's and FC's.    Also find the libraries (SFB's and SFC's), I've seen people struggle to develop code for functions that were in the libraries simply because they didn't realise they were there.   For instance the Siemens Timers are archaic and the format is based on the old S5 timers, most people commonly use SFB4 which a TON timer.
  3. Newbie Help, Migrating from Allen Bradley

    But it is far more flexible, in Logix you can only indirectly address into arrays, Step 7 is much more flexible and can indirectly address virtually anywhere.
  4. tracking down bit locations in step 7

    I've worked a lot with Siemens, my favourite PLC, but haven't touched one for 4 years now so a bit rusty.   You can cross reference or look at the program structure, which is like a block tree showing the block calls starting from OB1.   This manual section 14 can help https://cache.industry.siemens.com/dl/files/056/18652056/att_70829/v1/S7prv54_e.pdf   If I had the program I'd give you the buttons to press but unfortunately I don't have it, sorry.
  5. tracking down bit locations in step 7

    How many times is FB35 called? You can cross ref FB35 or even DB77 to find it. An Instance DB is the instantaneous memory for a single FB call, unless they are doing something odd, there should only be one FB35 call with DB77 as its instance DB. This DB stores the I/O to the FB and all the internal memory STAT flags for that one call.  Every call to FB35 should declare a unique DB and that DB cannot then be attached to any other FB (although it could be attached to second FB35 but that would overwrite any status from the previous call).   An instance DB also cannot have its format modified, its automatically set up to the I/O and STAT's of the FB its assigned to.        
  6. tracking down bit locations in step 7

    If the Data Bit used in the program is in an Instance DB, which is linked to an Input point of the FB call, the way to find where its set is to search for the Input tag. i.e if the tag connected to the input of FB35, where DB77 is the instance, is M100.6 then search for M100.6. Is it good practice, without seeing the program I don't know why they did this. Its fairly common to use Instance DB bits in the program elsewhere, but unsure why they would use a bit/byte/word attached to an actual I/O point to the FB, it seems to me to be easier to use the actual I/O point. It could be its a common program where they change the actual I/O points but the main program is standard and the same, this way using the I/O Instance DB point sort of makes sense. Why do you need to find every instance of call to FB35??, DB77 is only the instance DB for one single call, any other call would use a different DB.    
  7. "newbie" to Siemens, ID of PLC and uses please

    For Siemens you'd be looking at S7-1200 as a starter and I believe if your restricting yourself to this smaller PLC there is a cheaper software option.      
  8. "newbie" to Siemens, ID of PLC and uses please

    The S7-200 PLC is obsolete now. I believe MicroWin to program it is free now, maybe wrong believe it is.     I would add, if you want to learn this to understand Siemens, this was not a typical Siemens system, its original design was from Texas Instruments.
  9. Data Blocks

     L #Source_Word SLD 3 T #Source_Word   This is moving the address of the data word into a pointer format, a pointer would be a double word and includes the byte address and the bit address 0-7, the bit address takes the lowest 3 bits, therefore the programmer is shifting the bits, so in this case the value 226 is in pointer format 226.0. OPN DB[#DB_Source] is opening the DB identified by #DB_Source, which in this case is 50, therefore its opening DB50. L DBW[#Source_Word] is load the dataword identified by #Source_Word, in this case 226.0, therefore L DBW226. (If he had not shifted by 3 this would not have worked) OPN DB[#DB_Dest] T DBW[#Dest_Word]   is the same thing, he's opening the destination datablock and tranferring the value he's taken from DB50.DBW226  into this DW.  L #Source_Word L P#2.0 +D  T #Source_Word He's transferring more words, so he's incrementing to the next word, as its in pointer format he's adding pointer P#2.0, which means 226.0 + 2.0 = 228.0, therefore DBW228 will be the next one. He's added 2, as he is transferring Data Words, which is two bytes long, the next data word is two bytes away.   He does the same with the destination then does  L #Loop_Counter1 LOOP next This automatically decrements the value held in Loop_Counter1 which he initiated to a value of 2 (he's doing 2 loops) and jumps back to the label next Once Loop_Counter1 reaches zero it continues down where he increments the source DB to DB51 and offsets the destination word, so iot will be the same DB he writing to but further down.   L #Word_Dest //Increment Active Word number by Length L 2 //(2 x Length because off Byte number) +I  L 2 +I  T #Word_Dest for some reason he adds 2 twice rather than 4 :) Then loops back and moves another two words, same data words in the next DB {51) to the next two words in the destination DB                  
  10. Event ID 16# 494D STOP due to IO error

    Maybe start with a counter in each OB you've put in to see which is called. Remember Siemens advice not to have these OB's programmed all the time as its a risk to the system, they are meant to gather more information on the error. I would look to investigate the problem, fix it, then remove the OB;s or leave the counters and put in a STOP instruction.
  11. Event ID 16# 494D STOP due to IO error

    Check the CPU error message to find out what is not communicating. If you feel confident that nothing will be damaged by inhibiting the PLC from going tio STOP, you can program one of the OB's, I believe OB122 would probably be the one (the error message would confirm which OB it called I believe). https://cache.industry.siemens.com/dl/files/574/1214574/att_44504/v1/SFC_e.pdf This should stop the PLC from going to stop. You should then program in some code to catch the error. See page 1-64 of the manual I linked to for the error codes.
  12. Siemens

    This link is from 2013 and has some figures and external links http://automationprimer.com/2013/10/06/plc-manufacturer-rankings/
  13. Siemens

    This is a forum for people to search for help, your personal problems are your problems. Your comments show total ignorance and I wish the people who run this site could delete such threads. Siemens is the top PLC brand in the world for a reason, I too have worked with Germans on occasions, never found one who critisised or complained like a baby about them. Siemens is a very powerful PLC, so are the Rockwell PLC's, both are very good. There are some poor PLC's out there and neither of these are in that group. I'm wondering if you only write here when your drunk or something,
  14. Siemens

    Beyond you is it? Stick to lego or something down to your intellect. http://engineering.electrical-equipment.org/electrical-distribution/the-top-most-used-plc-systems-around-the-world.html
  15. problem with Positive edge

    The question was not clear on that but I did cover the two buttons together at the end of my reply by stating that if that is what he is after, which normally a safety application, he would need more than what he has done. He would need to ensure that the buttons are pressed within a short time of each other. Also if it is a safety application he shouldn't be doing it in the PLC, unless it is a safety PLC, there are hard wired two button press safety relays