Skip to main content

Tlp Nodes

Use these nodes to end TCP/UDP requests from your microcontroller.

Proc Nodes

tcp|udp connect

Provides the connection to esp32 with server over TCP/UDP transport layer protocol.

Inputs

  • Connection Type : Select connection type
  • IP Type : Select IP type
  • IP Address : Specify IP address
  • Port Number : Specify port number

Outputs

  • Socket : Socket number
  • Success Code : Whether the connection was successful

tcp|udp send

sends the string to server over TCP/UDP transport layer protocol.

Inputs

  • Socket : Specify socket number (take from the output of connect node)
  • Send Data : Provide data to be sent

Outputs

  • Success Code : Whether the data was sent successfully

tcp|udp recieve

recieve the string from server over TCP/UDP transport layer protocol.

Inputs

  • Socket : Specify socket number (take from the output of connect node)

Outputs

  • Received Data : Received Data
  • Success Code : Whether the data was received successfully

tcp|udp disconnect

Disconnect the esp32 from server and closes the socket.

Inputs

  • Socket : Specify socket number (take from the output of connect node)