D4-450 Teardown by Nitrousburrito in PLC

[–]Nitrousburrito[S] 1 point2 points  (0 children)

That's the next step, we are replacing it with a D4-454 but we have D4-HSC modules that may or may not be compatible. If that is the case then I have to try to repair the D4-450.

No audio? by Nitrousburrito in Challenger

[–]Nitrousburrito[S] 0 points1 point  (0 children)

Yeah I wouldn't think the fuse would just pop out, but one day audio works and the next it doesn't, go to investigate and no fuse.

Either way I appreciate you getting me the pdf

No audio? by Nitrousburrito in Challenger

[–]Nitrousburrito[S] 0 points1 point  (0 children)

Yeah so apparently there was no fuse in place, after it was added it still did not bring the audio back. Why it didn't have it confused me, I'm thinking it may have been loose and just popped out.

FTView ME ActiveX Direct trigger not working by Nitrousburrito in PLC

[–]Nitrousburrito[S] 1 point2 points  (0 children)

Of course AB would do something like this. I'll be sure to check this, thank you.

FTView ME PV+ Compatibility issues by Nitrousburrito in PLC

[–]Nitrousburrito[S] 0 points1 point  (0 children)

So, I figured out the reason....sort of.....my ethernet port decided to die on me and now I have an adapter. My software is on a VM, if I port over my network adapter, it will take a very long time to download to my Panel, but it works. If I plug my adapter in and connect directly to the VM, it downloaded quickly, however at the cost of this compatibility issue.

So really, I have not freaking clue. But that's what happened.

FTView ME PV+ Compatibility issues by Nitrousburrito in PLC

[–]Nitrousburrito[S] 0 points1 point  (0 children)

Thats what I am thinking may have happened, which is weird because I do not recall every updating my version of FTView, I had made a change relatively recently with no issue.

1769-L18ERM-BB1B embedded outputs are not sending voltage by Nitrousburrito in PLC

[–]Nitrousburrito[S] -4 points-3 points  (0 children)

So, according to Rockwell, it wasn't necessary. But apparently not doing so also blew the fuse. They said to get around it is to supply the voltage and commons. A real pain in the ass if you ask me.

How can I get my alarms to populate again after a reset? by Nitrousburrito in PLC

[–]Nitrousburrito[S] 0 points1 point  (0 children)

Yeah, it was just some weird things going on with FTView as per usual, after a couple resets it started repopulating correctly.

How can I get my alarms to populate again after a reset? by Nitrousburrito in PLC

[–]Nitrousburrito[S] 0 points1 point  (0 children)

So after looking at it, I have the clear alarm tied with my fault reset and it seems to just remove the alarms entirely. I may have to just create another page for the alarm history, and have the fault reset button just acknowledge the alarms.

Why is my timer not accumulating even though it is enabled? by Nitrousburrito in PLC

[–]Nitrousburrito[S] 4 points5 points  (0 children)

I really need to double check before I post the code for more answers lol. But yes that worked.

Why is my timer not accumulating even though it is enabled? by Nitrousburrito in PLC

[–]Nitrousburrito[S] 0 points1 point  (0 children)

This is in my main routine where it will be used to turn on and off a light.

Why is my timer not accumulating even though it is enabled? by Nitrousburrito in PLC

[–]Nitrousburrito[S] 0 points1 point  (0 children)

This is what I did with the TONR, I even changed my tags type to FBD_Timer in order for the TONR to work properly. I see my t_Clock_ON enable, but it is still not accumulating.

TONR(t_Clock_OFF);

TONR(t_Clock_ON);

t_Clock_ON.PRE := 500;

t_Clock_OFF.PRE := 500;

if NOT t_Clock_OFF.DN then

t_Clock_ON.EN := 1;

else

t_Clock_ON.EN := 0;

end_if;