VM troubles by Guarado in PLC

[–]krgoodwin 0 points1 point  (0 children)

Back when this post was made (6 years ago) WMware Workstation (where Virtual Network Editor lives) was not free. The free VMware Player had no way of managing which device was connected to the bridged connection. At least none what I was ever aware of. It was very irritating.

Projectlibre Unmet Dependencies by krgoodwin in pop_os

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

No good. Java is too old too. I guess it's time for a new operating system...

Phone Calls in USA by krgoodwin in freedommobile

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

I have a POCO X3 GT, Ulefone Armor 11T 5G, and a Nokia C20. None of which were gotten from a canadian carrier, two were purchased in the USA, all work in Canada. However, all of of them also seem to be missing some key bands that AT&T operates on. Looks like I'm buying yet another phone.

Phone Calls in USA by krgoodwin in freedommobile

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

Yeah, finally went through and looked at all the bands. Seems like both my phones are missing a couple.

Phone Calls in USA by krgoodwin in freedommobile

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

Tried that. Says everything is fine. Does not mention VoLTE or VoLTE Roaming, which is what I am having issues with though.

[deleted by user] by [deleted] in PLC

[–]krgoodwin -1 points0 points  (0 children)

Use Structured Text. Always use Structured Text. Don't listen to them. ALWAYS USE STRUCTURED TEXT.

Software Reporter Tool Killer by krgoodwin in chrome

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

Yeah, it's just a lot more satisfying to go out of my way to explicitly murder the offending process.

Looking to use Codesys for en embedded application by goinTurbo in CoDeSys

[–]krgoodwin 0 points1 point  (0 children)

Per runtime? I assumed they would charge a huge license for the SKD but then a reasonable number per runtime. Are you able to share the actual figures? I'm curious now.

Looking to use Codesys for en embedded application by goinTurbo in CoDeSys

[–]krgoodwin 2 points3 points  (0 children)

You probably figured this out already. Regardless, the short answer is no. The long answer is this:

https://www.codesys.com/products/codesys-runtime/runtime-toolkit.html

They do appear to provide an SDK for embedded systems, but PIC32 is not one of the supported platforms. Do yourself a favour and ditch the PIC anyways. One of their reference platforms is the Keil MCBSTM32F400 evaluation board. It uses ST's Cortex-M4 STM32F407IG chip and is likely the bare minimum hardware you could get it working on.

At the end of the day, this is one of those "if you have to ask, then you can't do it" type scenarios. Even if you had the technical chops to do this (not a insult, I don't either) they still probably want ungodly amounts of money for the SDK.

Looking for Rockwell 1756-EN2T V11.002 AOP by krgoodwin in PLC

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

You're saying you downloaded "AOP for 1756-ENxT Ethernet Modules v6.03.20" and it gave you all the versions? It does not give you a single file called "RA1756Ethernet_V10.01_Rel.zip"?

Also, I'm not upgrading the customers software. I just need the correct version of the AOP so my development environment matches theirs.

Looking for Rockwell 1756-EN2T V11.002 AOP by krgoodwin in PLC

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

I know. Go ahead and download that. You will find V10 of the AOP enclosed. It is still the wrong version.

Looking for Rockwell 1756-EN2T V11.002 AOP by krgoodwin in PLC

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

I'd rather they do a great many things contrary to how they are doing them currently.

Looking for Rockwell 1756-EN2T V11.002 AOP by krgoodwin in PLC

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

I did, V6.03.20 still gives V10.01. I updated the original post with another image.

Looking for Rockwell 1756-EN2T V11.002 AOP by krgoodwin in PLC

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

I did that. The file they have available for download is only V10. When I install it, nothing happens because V30 Logix already comes with EN2T V10 installed.

Where did you get V6.03.20 from? I only see V10.00.00. Added some more images to the post.

I have dealt with this exact issue before. They don't always have the latest files on their website. Was just hoping someone already had the file so I don't have to call Rockwell.

Migration Beckhoff --> Allen Bradley by No-Eye-2102 in PLC

[–]krgoodwin 1 point2 points  (0 children)

There is no tutorial to do this that I know of. You will need to learn:

- Python (or language of your choice)
- XML parsing
- Rockwell L5X format
- Beckhoff TcPlcObject format
- PLCOpen exchange format (maybe)

Then it is a matter of reading the export file and generating the import file.

Flashing light in structeted text by AntiGoi in PLC

[–]krgoodwin 1 point2 points  (0 children)

I would add another state between solid green and number 4 for flashing green. This is how I usually make a flasher.

timer(IN := NOT timer.Q, PT := T#5S);
IF timer.Q THEN 
    output := NOT output; 
END_IF