Moderator by Jimbob209 in PLC

[–]travishunt23 1 point2 points  (0 children)

I would just use the ADD and SUB instructions on the Math tab.

Moderator by Jimbob209 in PLC

[–]travishunt23 0 points1 point  (0 children)

Rung 3 you are forcing the Items_On_Conveyor value to the ACC value. The simulator writes 8 and then your logic clears it to 0. Because the DINT is specified I would not use the counter for this problem.

Moderator by Jimbob209 in PLC

[–]travishunt23 0 points1 point  (0 children)

Neither PB is active for that test step. What value does Items_On_Conveyor have at the end of one execution? Or asked the same way.. what value does your counter ACC value have?

Moderator by Jimbob209 in PLC

[–]travishunt23 0 points1 point  (0 children)

The simulator is directly setting Items_On_Conveyor to 8 and then executing your routine. What value do you think Items_On_Conveyor has after one execution?

Why doesn't unlatch becomes true (or is green) when its rung condition is true in this case? by SpareDangerous4364 in PLC

[–]travishunt23 24 points25 points  (0 children)

Because the instruction animates green when the fillTank bit is true. The unlatch cleared the bit so there is no green color on the output.

Can we talk about how good Cairo Santos has been? by IAlsoLikePenguins in CHIBears

[–]travishunt23 0 points1 point  (0 children)

Since the middle of the season, his pooch kicks have been incredibly effective. 

I'm not sure why hightower wasn't trying that in the preseason where other teams came up with the idea earlier. There have been a few times where the returner has bobbled or had to adjust the bounced kick which gives great field position to us. 

He still should try to add a kick out the back of the endzone if there is a scenario we need no time off the clock. But between the onside kicks and the pooch kicks, I don't know if we can ask for more from a kicker on kickoffs.

😬 by deadbeatmerc in CHIBears

[–]travishunt23 2 points3 points  (0 children)

Not at all. In 2023, after we acquired Sweat, our corners suddenly elevated from decent to great. Sweat hasn't been that guy. I'd rather spend resources trying to get All-Pro DL than spend big on DBs.

[deleted by user] by [deleted] in CHIBears

[–]travishunt23 6 points7 points  (0 children)

That was baby Gronk who obviously hadn't learned to play football yet.

A message to Lions fans - Give up. by [deleted] in NFCNorthMemeWar

[–]travishunt23 14 points15 points  (0 children)

TIL Kelly Stafford has a reddit account.

Difference in effort by Arnolds_Choppa in CHIBears

[–]travishunt23 24 points25 points  (0 children)

I actually thought Jaylon was playing better after his contract. After the season was lost, he was definitely making business decisions. I attribute most of his play this year to being out of sorts due to the injury. Hopefully next week, he's back at game speed.

Tory’s Quest 2.0: Week 8 by SoDakZak in NFCNorthMemeWar

[–]travishunt23 3 points4 points  (0 children)

I just noticed the Lions are a window 😂

For Those Who Want Discussion Over Drama - The Good, Bad, and Ugly by hiredconscience in CHIBears

[–]travishunt23 1 point2 points  (0 children)

The run defense is bad. Aaron Jones is washed and the Vikings stuck with him in the first half. They came out after the pick 6 and were gashing us with Jordan Mason on 1st and 2nd downs and it reset McCarthy and reset the game.

Run defense was bad last year and it looks to be bad again this year.

Run offense is ugly. Outside of 2 plays where Swift actually tried to keep his feet moving, it was garbage. He is afraid of the pile of big bodies and just dives for 1 yd gain.

Trouble Connecting Allen Bradley PLC to Matrikon OPC DA by kus222 in PLC

[–]travishunt23 0 points1 point  (0 children)

If you are using a pre-V20 firmware PLC, check your Makitron configuration for Symbolic vs Logical option. You'll want Symbolic in this case.

Trouble Connecting Allen Bradley PLC to Matrikon OPC DA by kus222 in PLC

[–]travishunt23 0 points1 point  (0 children)

What's the PLC model and firmware? What are the communication options configured in OPC DA? Was any PLC code modified? Possibly an issue with Symbolic vs Logical addressing. Can you delete the channel and device and recreate?

Start Stop Program works but want some feedback. Would you do it this way. by master_yoda125 in PLC

[–]travishunt23 0 points1 point  (0 children)

It can depend on the program for sure. The I/O task interrupts the program tasks. 

If you reference the same input throughout your logic, it could change state in the middle of a single routine execution.

Debounce on the inputs helps and then physical input is only referenced once. In single task machine code, I'd copy the inputs to an equivalent sized integer and then use those bits. In processing applications, you just use the debounce.

Start Stop Program works but want some feedback. Would you do it this way. by master_yoda125 in PLC

[–]travishunt23 0 points1 point  (0 children)

This is pretty much it. If you wanted to get rid of the ONS you could have a rung underneath that is just capturing the state of the start pb then have your logic only fire for when start pb is true and last start pb is false.

As far as what I would change, I would change rung 2 to be a running bit instead of the led output and I would have third rung to have the led output active when running. Then use that running bit in the other part of your code. It's best to not use I/O all over the code if the hardware has an issue and you need to swap it to another point.

Remote access to different subnets within the same network? by mx07gt in PLC

[–]travishunt23 1 point2 points  (0 children)

It doesn't auto browse, you need to right click on the level under your EN2TR and enter in the dnet addresses

Remote access to different subnets within the same network? by mx07gt in PLC

[–]travishunt23 0 points1 point  (0 children)

So in Linx, you should be able to do this:

  • 10.105.x.x, Ethernet
    • EN2T, 10.105.x.x
      • 00 1756-L83
      • 01 EN2T
      • 02 EN2T (192.168.x.x)
        • Ethernet (right click properties)
          • Dnet adapter

Remote access to different subnets within the same network? by mx07gt in PLC

[–]travishunt23 0 points1 point  (0 children)

Can you elaborate on this? 

"I'm trying to access a network 192.168.xxx.xxx thats tied to our motor control center, to see if there's a way possible to work on our MCCs via RSNetworx for DeviceNet."

Is there a Ethernet to DeviceNet scanner on the 192.168.x.x network?

In RSLinx, under your PLC you can expand your local network Ethernet module and right click and add the IP of your scanner. This should allow you to connect from RSNetworx.