I recently bought the ENC28J60, got it hooked up and ready to go. only now to realize that i can barely understand whats written in the examples.
I was initially hoping the library's for the ENC would be as user friendly as the official Wiznet library's. but oh was i wrong.
Basically what i am trying to do is have the arduino connect to and IRC channel. Do all the handshakes, authorize with the server, then join a channel. for then to evaluate each incoming line for commands. It does not need to store much data, but it must be able to pick up when a command is written in the channel.
I had an ok idea on how i would approach this on the wiznet library's. but i can't even get the ENC to connect properly to the server. let alone listen to what the server says.
Im using the EtherCard Library found here: GitHub - njh/EtherCard: EtherCard is an IPv4 driver for the ENC28J60 chip, compatible with Arduino IDE
So for my fist task i need to write a code that
opens a connection to irc.quakenet.org:6667
sends rawtext commands to the server. and then listen for response.
When i can get the response printed in serial i got something to work on my own. but right now it seems way over my head.
Any pointers/help would be much appreciated.
-Thomas