Dicas...como programar em Arduíno??

bubulindo:
O que é que já tentaste???

Bom dia bubulindo
Eu já tentei fazer isto .... :disappointed_relieved:
Obrigado pela resposta bubulindo.

#include <EtherShield.h>
#include <ETHER_28J60.h>
#include <dht.h>

static uint8_t mac[6] = {0x54, 0x55, 0x58, 0x10, 0x00, 0x24}; //Endereço MAC - Camada de Enlace
static uint8_t ip[4] = {192, 168, 0,15}; //Endereço IP - Camada de Rede
static uint16_t port = 80; //Porta padrão protocolo HTTP

ETHER_28J60 e;

void setup()
{
e.setup(mac, ip, port);
}

void loop()
{
if (e.serviceRequest())
{
DHT.read11(dht_dpin);

e.print("WebServer Simples");//Instruções HTML.
e.print("humidade = ");
e.print(DHT.humidity);
e.print(" % ");
e.print("Temperatura = ");
e.print(DHT.temperature);
e.println(" Celsius ");

e.print("

Desenvolvido por Allan Romanato");
e.respond();
}
delay(100);
}