uipethernet tutorial mega hr911105a hanrun example enviar enc28j60 ejemplos datos c arduino http-post lan ethernet

c - mega - hanrun hr911105a arduino tutorial



EnvĂ­o de datos POST con Arduino y ENC28J60 Ethernet LAN Network Module (4)

Es posible que desee probar esta biblioteca que es totalmente compatible con el stock Ethernet-lib:

https://github.com/ntruchsess/arduino_uip

Ejemplos de Arduino-IDE Ethernet funcionan al instalar esta lib en [arduino-dir] / libraries / UIPEthernet, abrir los ejemplos Ethernet estándar (p. Ej .: examples-> Ethernet-> WebServer) y reemplazar el include "Ethenet.h" por " UIPEthernet.h ".

Acabo de comprar un nuevo módulo de red LAN Ethernet ENC28J60 en Ebay, y deseo enviar datos POST con este módulo a la dirección web especificada, por ejemplo. www.mydomain.com/example.php

He vuelto a ver google para ver algunos ejemplos, pero todo lo que pude ver fueron ejemplos de escudo arduino, no módulo que tengo. Con este módulo estoy usando las siguientes bibliotecas:

"etherShield.h"
"ETHER_28J60.h"

Deseo enviar uno / dos POSTS especificados (variables) al formulario php, pero no sé cómo hacer esto.


Con respecto a la respuesta de netheads, estaba teniendo problemas para recibir los datos POST en el extremo del servidor. Recibía información del encabezado, simplemente no podía acceder a los datos de la publicación usando $ _POST o por cualquier otro medio. Descubrí que especificar el tipo de contenido resolvió este problema. Simplemente cambie la parte del encabezado HTTP de la siguiente manera:

Stash::prepare(PSTR("POST http://$F/$F.csv HTTP/1.0" "/r/n" "Host: $F" "/r/n" "Content-Length: $D" "/r/n" "Content-Type: application/x-www-form-urlencoded" "/r/n" "/r/n" "$H"), website, PSTR(PATH), website, stash.size(), sd);


Arduino v1.6.12

#include <EtherCard.h> // your variable #define PATH "example.php" #define VARIABLE "test" // ethernet interface mac address, must be unique on the LAN byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x31 }; const char website[] PROGMEM = "www.google.com"; byte Ethernet::buffer[700]; uint32_t timer; Stash stash; void setup () { Serial.begin(57600); Serial.println("/n[webClient]"); if (ether.begin(sizeof Ethernet::buffer, mymac) == 0) Serial.println( "Failed to access Ethernet controller"); if (!ether.dhcpSetup()) Serial.println("DHCP failed"); ether.printIp("IP: ", ether.myip); ether.printIp("GW: ", ether.gwip); ether.printIp("DNS: ", ether.dnsip); if (!ether.dnsLookup(website)) Serial.println("DNS failed"); ether.printIp("SRV: ", ether.hisip); } void loop () { ether.packetLoop(ether.packetReceive()); if (millis() > timer) { timer = millis() + 10000; byte sd = stash.create(); stash.print("variable="); stash.print(VARIABLE); stash.print("&action=Submit"); stash.save(); // generate the header with payload - note that the stash size is used, // and that a "stash descriptor" is passed in as argument using "$H" Stash::prepare(PSTR("POST http://$F/$F.csv HTTP/1.0" "/r/n" "Host: $F" "/r/n" "Content-Length: $D" "/r/n" "/r/n" "$H"), website, PSTR(PATH), website, stash.size(), sd); // send the packet - this also releases all stash buffers once done ether.tcpSend(); } }


En primer lugar, debe instalar la siguiente biblioteca: https://github.com/jcw/ethercard

conecta tu módulo a arduino con 6 pines:

  • ENC SO -> Arduino pin 12
  • ENC SI -> Arduino pin 11
  • ENC SCK -> Arduino pin 13
  • ENC CS -> Arduino pin 8
  • ENC VCC -> Arduino pin 3V3
  • ENC GND -> Pin Arduino Gnd

luego usa el siguiente código:

#include <EtherCard.h> // your variable #define PATH "example.php" #define VARIABLE "test" // ethernet interface mac address, must be unique on the LAN byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x31 }; char website[] PROGMEM = "www.mydomain.com"; byte Ethernet::buffer[700]; uint32_t timer; Stash stash; void setup () { Serial.begin(57600); Serial.println("/n[webClient]"); if (ether.begin(sizeof Ethernet::buffer, mymac) == 0) Serial.println( "Failed to access Ethernet controller"); if (!ether.dhcpSetup()) Serial.println("DHCP failed"); ether.printIp("IP: ", ether.myip); ether.printIp("GW: ", ether.gwip); ether.printIp("DNS: ", ether.dnsip); if (!ether.dnsLookup(website)) Serial.println("DNS failed"); ether.printIp("SRV: ", ether.hisip); } void loop () { ether.packetLoop(ether.packetReceive()); if (millis() > timer) { timer = millis() + 10000; byte sd = stash.create(); stash.print("variable="); stash.print(VARIABLE); stash.print("&action=Submit"); stash.save(); // generate the header with payload - note that the stash size is used, // and that a "stash descriptor" is passed in as argument using "$H" Stash::prepare(PSTR("POST http://$F/$F.csv HTTP/1.0" "/r/n" "Host: $F" "/r/n" "Content-Length: $D" "/r/n" "Content-Type: application/x-www-form-urlencoded" "/r/n" "/r/n" "$H"), website, PSTR(PATH), website, stash.size(), sd); // send the packet - this also releases all stash buffers once done ether.tcpSend(); } }