Server Nodes
Use these nodes to create an http server on your micro controller and handle http requests received.
Config Nodes
http server config
Creates and starts an HTTP server to handle incoming client requests.
Inputs
- Server Port : Specify the port for the server to listen to
- Init at startup : Whether to intialize server at startup
Proc Nodes
http server GET
Sets a response to be sent when a GET request is received on the specified server.
Inputs
- Server Config : Select the HTTP Server config
- Route : Specify the route to recieve GET requests
- Serve wifi details collection page : Whether to display the wifi details page
- Response Data : Specify the response data to be sent
- Custom Header : Specify the custom header name
- Custom Header Value : Specify the custom header value
http server control
Use this node to start/stop the http server manually.
Inputs
- Server Config : Select the HTTP Server config
- Command : Select the command for server control
Event Nodes
http server POST
Receives incoming data via POST request from HTTP clients on the specified route.
Inputs
- Server Config : Select the HTTP Server config
- Route : Specify the route to recieve POST requests
- Receive buffer size : Specify the receive buffer size
Outputs
- Received Data : Recieved data from the post request