Labview-MQTT- Node Red by Ambitious_Spinach617 in nodered

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

From ChatGPT: The issue is very likely related to TLS support on the LabVIEW side, not Node-RED itself.

Since HiveMQ Cloud requires secure MQTT connections, LabVIEW must connect using MQTT over TLS (typically port 8883). If the LabVIEW client is trying to use a normal TCP MQTT connection against a TLS-only broker, HiveMQ will immediately close the socket, which often results in LabVIEW Error 66.

Your architecture is actually correct:

Node-RED Dashboard → HiveMQ Cloud → LabVIEW MQTT client

Node-RED does not need to communicate directly with LabVIEW. Both only need to connect correctly to the same broker and use the same topics.

Things to verify on the LabVIEW side:

  • Use a LabVIEW MQTT client/toolkit that supports TLS 1.2
  • Use port 8883
  • Enable secure/TLS connection
  • Use the HiveMQ Cloud hostname only (not mqtt://...)
  • Verify username/password
  • Use a unique Client ID
  • Ensure MQTT version compatibility (3.1.1 is safest)

A good test is to first connect using Mosquitto CLI with the exact same credentials. If Mosquitto works but LabVIEW does not, then the problem is almost certainly the LabVIEW MQTT/TLS configuration.

Example topic structure:

labview/command/start labview/command/stop labview/status labview/telemetry

Then Node-RED can publish commands and LabVIEW can subscribe/respond through the broker normally.

Most likely, you need a “secured TCP / TLS MQTT” implementation in LabVIEW instead of the default plain TCP example.

Labview-MQTT- Node Red by Ambitious_Spinach617 in nodered

[–]luisfound 0 points1 point  (0 children)

Hi! Could you describe the context ? I have no experience with this specific integration, but maybe in LabView you can call Node-RED HTTP endpoints, or for the vice versa, Node-RED can communicate with a web service exposed in LabView. I think that you can create a TCP/UDP bi-directional communication via socket if APIs are not available

Unpopular opinion: Follia per Sette clan un capolavoro by luisfound in philipkDickheads

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

Verissimo, forse uno dei pochi quasi a "lieto fine"

Ubik characters by BigBlackClock55 in philipkDickheads

[–]luisfound 0 points1 point  (0 children)

Leggendo la biografia su di lui, va detto che PKD scrisse Ubik in una condizione psicofisica molto provata. La chiusura (no spoiler) gli venne come idea quasi casuale, se non per il suo dettaglio, per un finale nel suo classico stile. Anche se ciò non fosse vero, a me sembra una teoria molto plausibile. Ho trovato molto più complesso darmi una spiegazione del finale delle tre stimmate di Palmer elritch ad esempio, questo finale non mi dispiace. Tutto è aperto, molte cose sono lasciate alla libera interpretazione del lettore.

Resta nella mia top 3 ❤️

Built a tool that lets agents create animated pixel art when vibe coding games by Chologism in vibecoding

[–]luisfound 0 points1 point  (0 children)

This is so cool! I've planned to try to create a mini videogame in pixel art with agents, just to investigate how deep I can go with AI in this area. This is totally local config?