Personal Data

Username:
nothinrandom
Joined:
2020-01-17 12:08:18

Projects

User Activity

  • Modified a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Looking at the versions, you just downgrade until it works correctly. https://us.store.codesys.com/iiot-libraries-sl.html#product.attributes.wrapper

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Looking at the versions, you just downgrade until it works correctly. https://us.store.codesys.com/iiot-libraries-sl.html#product.attributes.wrapper.

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Try to downgrade the MQTT Client SL to 1.1.0.0, which is the last known good working version. CoDeSys posted on their store that 1.3.0.0 is supposed to fix this issue, but it looks like not yet. MQTT Client SL-1.3.0.0 Important Bugfix (for topics > 80 chars) Bugfix (AsyncProperty) Improved error handling of the subscriber FB

  • Modified a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Not sure what settings you have, but maybe the server isn't set up correctly? For example, check /etc/CODESYSControl_User.cfg (Linux) to make sure these items are in place: [CmpOPCUAServer] SECURITY.CommunicationMode=SIGNED_AND_ENCRYPTED SECURITY.Activation=ACTIVATED NetworkPort=4843 NetworkPort is optional

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    Not sure what settings you have, but maybe the server isn't set up correctly? For example, check /etc/CODESYSControl_user.cfg (Linux) to make sure these items are in place: [CmpOPCUAServer] SECURITY.CommunicationMode=SIGNED_AND_ENCRYPTED SECURITY.Activation=ACTIVATED NetworkPort=4843 NetworkPort is optional

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    When you're filling out this array, couldn't you just keep track of the filled index via a separate variable? This is especially important if you're re-using this array since each transaction might not have the same size.

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    This is just a lookup table. Are you interested in all columns or just the angle and stroke? If only angle and stroke, then simply create a REAL array with index of 0 (e.g. myTable: array[0..33] of REAL := [0, 27.88, 55.77, 83.66, (fill in the rest here)]. If you're interested in all columns, then probably need to create multiple arrays (e.g. one for angle, one for stroke, one for difference) since angle is INT, and the other two are REAL. Anyway, then just index through them.

  • Posted a comment on discussion Engineering πŸ‡¬πŸ‡§ on CODESYS Forge

    there should be an input field called eContentType. Fill out this field with Web_Client.CONTENT_TYPE.APPLICATION_JSON

View All