分享

arduino w5100网络模块双向通信

 开启美好每一天 2015-11-12
     最近查了很多资料研究w5100的网络双向通信,代码研究了很多但是发现问题也不少。
1.大多是上传数据到服务器 HTTP GET AND POST方式上传数据 实现起来很简单 我在apache web server 上写了个发送电子邮件的脚本 接收post数据后发送邮件
2.反向控制 arduino 一直是个问题原因是在网络上很难找到 相关资料!看看arduino ide 的实例中有udp传送协议的实例程序,自己在网络上使用php发送udp包的方法发送数据到arduino
3.效率问题 在将代码一番整合以后 发现效率极低 并严重影响程序的正常运行。自己在网络上一番查找之后确定使用 pt库(Protothreads)开发类并行程序 当然我对arduino的编程语言很不在行!所以我在描述我所做的内容的时候可能出现不准确的地方

硬件环境 ARDUINO UNO R3  + W5100 网络盾板

结合以上几点写了一个程序 请看下面代码

UDP 发送部分 复制php代码请 点击这里查看 http://www./13336.html

9140452.png

因为arduino 只能在内网进行服务 因其没有拨号能力只能使用路由器进行端口转发或者类似操作!这里我测试时是在内网电脑上架设的apache2 php 服务器 设置的arduino ip 192.168.1.177

具体代码请看 http://www./13338.html
ARDUINO 代码#include <pt.h>//ProtoThreads必须包含的头文件
  1. #include <SPI.h>         // 加载SPI
  2. #include <Ethernet.h>     //加载网络库
  3. #include <EthernetUdp.h>  // 加载UDP 库UDP library from: [email]bjoern@cs.stanford.edu[/email] 12/30/2008
  4. /***************************************UDP AND BOOT*****************************************************/
  5. byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
  6. IPAddress ip(192, 168, 1, 177); //设置本机IP

  7. unsigned int localPort = 8888;      // 监听端口local port to listen on

  8. // buffers for receiving and sending data
  9. char packetBuffer[UDP_TX_PACKET_MAX_SIZE]; //buffer to hold incoming packet,
  10. char  ReplyBuffer[] = "acknowledged";       // a string to send back

  11. // An EthernetUDP instance to let us send and receive packets over UDP
  12. EthernetUDP Udp;

  13. /********************************************************************************************/
  14. static int counter1,counter2,state1=0,state2=0; //counter为定时计数器,state为状态

  15. static int protothread1(struct pt *pt) //线程1,
  16. {  
  17.   PT_BEGIN(pt);  //线程开始
  18.   while(1) //每个线程都不会死
  19.   {  
  20.     PT_WAIT_UNTIL(pt, counter1==2); //如果时间满了1秒,则继续执行,否则记录运行点,退出线程1
  21.     counter1=0; //计数器置零
  22.    /************************************************************************************/
  23.    int packetSize = Udp.parsePacket();
  24.   if(packetSize)
  25.   {
  26.     Serial.print("Received packet of size ");
  27.     Serial.println(packetSize); //包大小

  28.     // read the packet into packetBufffer
  29.     Udp.read(packetBuffer,UDP_TX_PACKET_MAX_SIZE);

  30.     Serial.println(packetBuffer); //输出字符串 可以对输出的字符串进行分析并使arduino 做出相应动作

  31.     // send a reply, to the IP address and port that sent us the packet we received
  32.     Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
  33.     Udp.write(ReplyBuffer);
  34.     Udp.endPacket();
  35.   }

  36.    /////////////////////////////////////////////////////////////////////////////////////
  37.   }

  38.   PT_END(pt); //线程结束
  39. }

  40. static int protothread2(struct pt *pt) //线程2,
  41. {
  42.   PT_BEGIN(pt); //线程开始
  43.   while(1) {    //每个线程都不会死

  44.     PT_WAIT_UNTIL(pt, counter2==2); //如果时间满了5秒,则继续执行,否则记录运行点,退出线程2
  45.     counter2=0;  //计数清零
  46.     EthernetClient client;
  47.   /**************************************************************************************/
  48. String data;
  49. data+="";
  50. data+="data="+analogRead(A1); // Use HTML encoding for comma's
  51. data+="&submit=Submit"; // Submitting data

  52. if (client.connect("www.",80)) {
  53. Serial.println("connected");
  54. client.println("POST /arduino/post.php HTTP/1.1");
  55. client.println("Host: www.");
  56. client.println("Content-Type: application/x-www-form-urlencoded");
  57. client.println("Connection: close");
  58. client.print("Content-Length: ");
  59. client.println(data.length());
  60. client.println();
  61. client.print(data);
  62. client.println();

  63. //Prints your post request out for debugging
  64. Serial.println("Host: www.");

  65. }

  66. if (client.connected()) {
  67. Serial.println();
  68. Serial.println("disconnecting.");
  69. client.stop();
  70. }

  71.   /***************************************************************************************/
  72.   }
  73.   PT_END(pt);  //线程结束
  74. }

  75. static struct pt pt1, pt2;
  76. void setup()
  77. {
  78. /***********************************初始化*********************************************/
  79.    //设置 初始化Ethernet and UDP  start the Ethernet and UDP:
  80.   PT_INIT(&pt1);  //线程1初始化
  81.   PT_INIT(&pt2);  //线程2初始化
  82.   Ethernet.begin(mac,ip);
  83.   Udp.begin(localPort);
  84.   Serial.begin(9600);

  85. /*********************************************************************************/
  86.   pinMode(12,OUTPUT);//设置引脚D12
  87.   pinMode(13,OUTPUT);//设置引脚D13

  88. }

  89. void loop () //这就是进行线程调度的地方
  90. {
  91.     protothread1(&pt1);  //执行线程1
  92.     protothread2(&pt2);  //执行线程2
  93.     delay(1000);  //时间片,每片1秒,可根据具体应用设置大小
  94.     counter1++;
  95.     counter2++;
  96.   }

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多