Arduino Socket.io沟通

时间:2016-10-10 21:24:35

标签: node.js socket.io arduino arduino-uno arduino-esp8266

如何将数据从Socket.io(NodeJs Server)发送到arduino? 我有一个ESP8266 Wifi Shield,我可以发送和接收数据吗?如果我可以有任何基本的例子吗?我如何使用Arduino套接字客户端? 我发现这个例子

我可以这样使用吗?

#include <SPI.h>
#include <Ethernet.h>

#include "SocketIOClient.h"

SocketIOClient client;

byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
char hostname[] = "";

// Socket.io "chat_message" event handler
void chat_message(EthernetClient ethclient, char *data ){
  Serial.print("Message : ");
  Serial.println(data);
}

void setup() {
  Serial.begin(9600);
  Ethernet.begin(mac);
  Serial.print("Arduino is on ");
  Serial.println(Ethernet.localIP());

  if(client.connect(hostname, 3000, "socket.io", "/chat_room")) {
    Serial.println("Socket.IO connected !");
  } else {
    Serial.println("Socket.IO not connected.");
  }

  //Event hanlders
  client.setEventHandler("chat_message",  chat_message);

  //Say hello! to the server
  client.emit("chat_message", "Arduino here, hello!");
}

void loop() {
  client.monitor();
}

1 个答案:

答案 0 :(得分:2)

Socket.IO是WebSockets的API,大多数Websocket库都支持它。

我对这个贡献最多的Arduino WebSocket library非常满意,它也支持Socket.IO。这是你的Socket.IO example

以下是示例中的socket.io实现的心跳消息类型:

if((now - heartbeatTimestamp) > HEARTBEAT_INTERVAL) {
    heartbeatTimestamp = now;
    // socket.io heartbeat message
    webSocket.sendTXT("2");
}