EtherCard icon indicating copy to clipboard operation
EtherCard copied to clipboard

EtherCard is an IPv4 driver for the ENC28J60 chip, compatible with Arduino IDE

Results 72 EtherCard issues
Sort by recently updated
recently updated
newest added

`#include static byte mymac[] = { 0x74,0x69,0x69,0x2D,0x30,0x31 }; static byte targetmac1[] = {0x!!,0x!!,0x!!,0x!!,0x!!,0x!!}; //don't want to share my mac byte Ethernet::buffer[500]; char const page[] PROGMEM = "HTTP/1.0 503 Service Unavailable\r\n"...

I rly need help. Im using server localy. `const char website[] PROGMEM = "192.168.0.5"; static byte myip[] = { 192,168,0,211 }; static byte mask[] = { 255,255,255,0 }; static byte...

I am trying to use Arduino Uno with ENC28j60 to send data to my local web server the URL i used is ( http://192.168.10.6:8338/heartbeat?table=1) when i use this URL in...

Hi all! Is there any way to send an email using the smtp Protocol?

Hey, I am trying to make a Post request within my local environment. When I use the IP it never goes further then DNS Lookup. I have found some related...

question

Hello! sendUdp() function not send broadcast packets :( in Wireshark no packets. UIP library worked correctly! ```C++ #include const byte myMac[] PROGMEM = { 0x70, 0x69, 0x69, 0x2D, 0x30, 0x31...

Thank you for great wrok. I have a small problem. https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L47 ``` static const char *client_postval; ```` https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L542 if (client_postval == 0) { https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L562 strlen(client_postval), https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L588 client_postval = 0; https://github.com/njh/EtherCard/blob/master/src/tcpip.cpp#L597...

Request for simply adding and defining said code in `EtherCard.h`: ``` class EtherClient : public Client { public: int connect(IPAddress ip, uint16_t port); int connect(const char *host, uint16_t port); size_t...

Hi I tried the default webClient google example and all I get is: ``` > HTTP/1.0 404 Not Found Content-Type: text/html; charset=UTF-8 Referrer-Policy: no-referrer Content-Length: 1568 Date: Sat, 18 Nov...

question

I use MegaCore https://github.com/MCUdude/MegaCore I want to use atmega64 & ENC28j60, can someone help me?