Eu gostaria que alguem me ajudasse nesse caso...
Eu consigo alterar o estado de alguma porta pela Web mas até agora não tenho ideia de como posso receber uma serie de variáveis digitadas em um formulario na Web para o Arduino. Um exemplo, caso na pagina peça para que seja digitado um dia, mês e ano...como faço para o arduino receber os valores digitados?
Passing Additional Parameters All request take a number of parameters (depending on the request type): The URI – a string (char*) containing the uri – which is normally everything following the hostname of a URL for Arduino - Home it would be /Reference/HomePage. Optional parameters as key value pairs. Parameters are appended to a URL like http://myhost/the/uri?parameter-name=parameter-value&other=parameter parameters are values of the struct http_client_parameter. It is easiest to do this like * *http_client_parameter parameters[] = { { "key","afad32216dd2aa83c768ce51eef041d69a90a6737b2187dada3bb301e4c48841" } ,{ NULL,NULL } };* * For POST and PUT request a string with additional data can be passed as a string. The data has to be in memory. Future Versions may have future features. For all requests additional headers can be specified. It works exactly the same was as uri parameters: * *http_client_parameter pachube_api_header[] = { { "X-PachubeApiKey","afad32216dd2aa83c768ce51eef041d69a90a6737b2187dada3bb301e4c48841" } ,{ NULL,NULL } };* *