All Neighborhoods

CODESYS Talk

    CODESYS Forge

  • bjarne-pagaard posted a comment on discussion Engineering πŸ‡¬πŸ‡§

    Hi A SINT is a short (signed) integer. It is already only 1 byte - so you should have no problem casting it to a byte like so: bMyByte := TO_BYTE(sintMyShortInt); If you have a regular INT you want to put in 2 bytes - there are a lot of ways you can do this. A Union is certainly one of them. You could have a union with 2 memebers: An array of 2 bytes as one member, and an integer value as another member. Another way would be to look at MEMCPY to put the value into your CAN-message. .. or create a...

  • kumareasu posted a comment on discussion Engineering πŸ‡¬πŸ‡§

    How to protect POU( Function or Function block or Program ) with a password.

  • dkugler modified a comment on discussion Visualization πŸ‡¬πŸ‡§

    thank you for pointing me to this "bug"!! I haven't recognized, the bit is reset after the first alarm is gone. I use this only for warnings, so it's not a drama, but was not correct in the past. I solved it now simply stupid by counting up a variable every time an alarm appears and decreasing it if an alarm is gone. The "warning lamp" is activated by checking the counter is > 0 The nice side effect, i'm able to show the number of active alarms in the state line now.

  • dkugler posted a comment on discussion Visualization πŸ‡¬πŸ‡§

    thank you for pointing me to this "bug"!! I haven't recognized, the bit is reset after the first alarm is gone. I use this only for warnings, so it's not a drama, but was not correct in the past. I solved it now simply stupid by counting up a variable every time an alarm appears and decreasing it if an alarm is gone. The nice effekt, i'm able to show in the state line much alarms are active.!

  • fontrap posted a comment on discussion Runtime πŸ‡¬πŸ‡§

    Good morning @eschwellinger, After some research I found out that the problem is the preinstalled CodeMeter on Raspberry Pi. As I mentioned the CodeMeter was installed on the Raspberry because I use a license from other vendor that needs the CodeMeter to be installed. The problem is that when I uninstall the CodeMeter from Raspberry I am able to detect the dongle from CODESYS and everything works as it should be but now the other product can not detect its own license. When I reinstall the CodeMeter...