Personal Data

Username:
koppit
Joined:
2022-03-24 17:57:02

Projects

  • No projects to display.

User Activity

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

    I have run into the same issue. Zigbee2MQTT does not like newline and carrige return. I was hoping it was as easy as a configuration, but I can't find it. I have just done a pass over the string to remove unwanted whitespace. IF Finalize_JSON THEN // Remove Carrige Return and New Line from json WHILE 0 <> WFIND(payload.str, "$R$N") DO payload.str := WDELETE(payload.str, 2, WFIND(payload.str, "$R$N")); END_WHILE; // Remove triple spaces WHILE 0 <> WFIND(payload.str, " ") DO payload.str := WDELETE(payload.str,...

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

    Thanks, increasing "g_udiMaxPublishersAndSubscribers" solved my issue.

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

    Hi, I'm doing some home automation with Zigbee2MQTT and the MQTT_Client (1.2.0.0) from IIoT Libraries SL. I have only been able to subscribe to 12 out of maybe 50 devices. Those are the 12 first in the program. If i comment out one of the 12, the 13th is subscribed to. Is there a limit to how many subscriptions the MQTT client can handle? Is there a way to add more? Greetings Jan Magne!

View All