How to connect custom board with node-red

Hi,

I am a beginner in node red.

I have a custom board which has a Qualcomm processor so, my question is how I connect this board with node red.

If you can install nodejs on the board you should then be able to install node-red on the board by following the generic instructions on the website.
Otherwise you can “connect” the board to node-red using http,tcp or most likely mqtt

Hi,
Thank you for your replay…

Do you mean you want to run node red on the board or that you want to connect that board to something like a pi and run node red on the pi and get data from the custom board?

Hi Colin,

My main application is to get the data of sensor which is connected to my custom board via I2c and these data is put on the server using node-red.

so any idea about this.?

So you could use serial, http, tcp, mqtt.
How are you planning to connect your board to where you plan to run Node-RED? ethernet? wi-fi? serial connection?

Thanks for your quick replay.

I plan to use a TCP connection over wi-fi, it is feasible?

Perfectly feasible, theres a TCP-IN node you can look at in Node-RED

But personally I would look at MQTT

So YourBoard -> MQTT over wi-fi -> MQTT broker
and MQTT broker -> Node-RED MQTT-IN

Theres a great intro to MQTT at https://www.hivemq.com/blog/how-to-get-started-with-mqtt

Thank you…
I will try on MQTT