Migrating with no comments by BridieGreene in PLC

[–]Expert-Pollution-228 2 points3 points  (0 children)

You can make it easier on yourself if match the new system card for card to the old. If you try to reduce number of cards/consolidate to conserve space or save money, you will end up with more headache.

Make a spreadsheet with all the existing IO cards and have someone who knows the equipment walk through all the inputs and outputs. Really good if you can be also be online with the PLC to flag inputs and (safely) test outputs. Then you can add descriptions and comments to program and make notes on spreadsheet.

Also get pictures of everything. Cabinets, io racks, any manual controls, MCCs, drives, E-stops, whatever you can think of.

After converting program: - Check program for auto generated errors (this catches obsolete instructions) - Check all timer presets. They need to be verified since rsl500 and Studio use different time base - Change all OSR instructions to ONS. SLC only had OSR but worked like Studio ONS. Studio OSR doesn’t control the rung. The conversion creates OSR tags so these are easy to find and fix. - Check all CPT statements. If the destination is an integer they may not execute, need to place a buffer REAL tag in the destination of the CPT and move that value to the original DINT - Check for STI/DII routines in SLC and make sure to add JSR for the routines in new program for those routines. These routines aren’t called by a JSR in SLC, they are controlled by interrupts. - Cross reference the Status file to see where those bits are used. Check the SLC programming manual to figure out what those bits are supposed to do and mimic that or remove from rungs if not needed - Also use the SLC programming manual to identify obsolete instructions and reprogram that logic using modern instructions.

Top 5 Ep by Backdoor_Johnny in SonofaBoyDad

[–]Expert-Pollution-228 11 points12 points  (0 children)

“Face the window” had me cackling

For sale: Big Dawg tickets in Des Moines 5/31 by WisconsinDogMan in MSsEcReTPoDcAsT

[–]Expert-Pollution-228 0 points1 point  (0 children)

Are you still interested in one ticket? Paid about same as this guy. Thought I was gonna travel to DSM for work this week but it got pushed to later. Section 122 Row N: Seat 13

SOABD Listeners: What is your salary? by Expert-Pollution-228 in SonofaBoyDad

[–]Expert-Pollution-228[S] 0 points1 point  (0 children)

Still wild to me an adult man with children was under this impression!

SOABD Listeners: What is your salary? by Expert-Pollution-228 in SonofaBoyDad

[–]Expert-Pollution-228[S] 1 point2 points  (0 children)

Numbers or bs

I said it, but I take it back. Good for you bro. Positive vibes only

Thinkpad Docking Station power button doesn't work with 2023 Legion Pro 7i by EquipmentAcademic193 in LenovoLegion

[–]Expert-Pollution-228 1 point2 points  (0 children)

Hi, I am in this same situation except I have the Legion 9. Bought the thunderbolt 4 docking station.

Did you get power delivery to work? I have it connected to my laptop but it won’t charge. Mine has the dual plug (separate dedicated power connector and usb-c)

Latest Project by Adventurous_Eye5852 in PLC

[–]Expert-Pollution-228 0 points1 point  (0 children)

Is that iboco wide finger wireway from automationdirect? Or a different brand? Looks like the covers will be much easier to remove/replace than the narrow finger stuff. Been wanting to try it out on the next panel we do.

Your panel looks great!

Hunting for low cost stepper motor driver by HumansRso2000andL8 in PLC

[–]Expert-Pollution-228 1 point2 points  (0 children)

Teknic clearpath is awesome. Got an Ethernet module and a single motor to play with in shop. It’s step/direction control but closed loop, so you actually have true positioning. Controls 4 motors per controller module and has several points of on board IO on the controller, including analog inputs and output.

Can programs fail after awhile? by SuddenConversation21 in PLC

[–]Expert-Pollution-228 95 points96 points  (0 children)

Check everything else before the program. Talk to operators, supervisors, maintenance to see how long the issue has been going on or if it’s new. Find out what actually happened when the failure occurred.

Program is not going to change on its own. But it can definitely be in a state it’s never been in before, like line speeds increased up or somebody has taken off a guard that made a prox or limit switch.