EtherCard
EtherCard copied to clipboard
EtherCard is an IPv4 driver for the ENC28J60 chip, compatible with Arduino IDE
Switch from manipulating the AVR registers directly to using the Arduino SPI library. * Should allows EtherCard to work on other architectures * Compile size is a little bit smaller...
I can't seem to find the right way to use the library for multicast listening. I wrote a simple multicast server and client in golang which use a mcast group...
Is there a way to pass custom hostname while setting up static IP? I was able to set custom host name using dhcp settings static bool dhcpSetup (const char *hname...
I have been looking at the code and it seemed to me that work was started to make up to 8 concurrent requests possible. Each time I log the result...
I am using **backsoon** example with enc28j60 module and arduino mega 2560 board. If i use only enc28j60 module and arduino mega 2560 board then everything works fine but when...
When sending something to a multicast address (e.g 225.1.2.1), a UDP packet gets properly sent (verified with Wireshark). However, my receiver doesn't get the package. I've tested my network and...
1- How do we find out if the device is connected? 2- After the data is received, terminate the connection and return to the beginning. Is there any new data...
Is it possible to get this library working on the ATMega1284p? I've been trying for the past few days using the ENC28J60 module with no success. The module works fine...
To whom it may concern... - In section "Initialising the library" the code line "uint8_type vers = ether.begin(sizeof Ethernet::buffer, mymac);" -> correction from uint8_type to uint8_t - In section "Static...
Hi! I'm using enc28j60 with arduino nano. (strange, but on module written "mni ecn28j60"). I am running this code: ```C #include static byte mymac[] = { 0x74, 0x69, 0x69, 0x2D,...