转载自互联网!!!仅供学习
除了官方的W5100以太网模块,使用最广的就要数ENC28J60模块了。
此模块经过众多高手完善第三方库,已经和官方模块功能一样~
先看看本次使用的硬件,一块arduino uno,外加一个以太网扩展板。
(, 下载次数: 63)
(, 下载次数: 59)
如果大家不是使用的这种大板,而是使用的下图的小板,就需要自己接线。
(, 下载次数: 59)
上面各个口定义如下
(, 下载次数: 64)
如果是下图这种标了1,2,3的。1号口对应的是VCC。
(, 下载次数: 65)
与arduino控制板连接对应表如下。
(, 下载次数: 62)
首先需要进入IDE的libraries文件夹中,把官方的以太库文件夹Ethernet删掉,或者移出文件夹,因为ENC28J60的函数名称和官方的一模一样,如果同时放入,就会编译错误或者下载出错。无法正常使用。
(, 下载次数: 61)
然后把本次使用的ENC28J60库文件拷入libraries文件夹
(, 下载次数: 66)
打开IDE,在Examples中,打开ENC28J60的演示例子WebServer。
(, 下载次数: 65)
直接把代码从这里复制进去也可以。- /*
- * Web Server
- *
- * A simple web server that shows the value of the analog input pins.
- */
- #include <Ethernet.h>
- byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
- byte ip[] = { 192, 168, 1, 177 };
- Server server(80);
- void setup()
- {
- Ethernet.begin(mac, ip);
- server.begin();
- }
- void loop()
- {
- Client client = server.available();
- if (client) {
- // an http request ends with a blank line
- boolean current_line_is_blank = true;
- while (client.connected()) {
- if (client.available()) {
- char c = client.read();
- // if we've gotten to the end of the line (received a newline
- // character) and the line is blank, the http request has ended,
- // so we can send a reply
- if (c == '\n' && current_line_is_blank) {
- // send a standard http response header
- client.println("HTTP/1.1 200 OK");
- client.println("Content-Type: text/html");
- client.println();
-
- // output the value of each analog input pin
- for (int i = 0; i < 6; i++) {
- client.print("analog input ");
- client.print(i);
- client.print(" is ");
- client.print(analogRead(i));
- client.println("
- ");
- }
- break;
- }
- if (c == '\n') {
- // we're starting a new line
- current_line_is_blank = true;
- } else if (c != '\r') {
- // we've gotten a character on the current line
- current_line_is_blank = false;
- }
- }
- }
- // give the web browser time to receive the data
- delay(1);
- client.stop();
- }
- }
复制代码 要注意IP地址要使用和自己网络所对应的,且不能和其他IP冲突。我这次使用的是192.168.1.177,在我的局域网中,这个地址是没有使用的。
(, 下载次数: 64)
这样。。就可以在浏览器中浏览了,网页显示的是模拟口的读数。
(, 下载次数: 62)
下面的附件就是最重要的,可以使用且功能齐全的ENC28J60的arduino库文件。
ENC28J60.rar (44.55 KB, 下载次数: 245) |