php - 通过以太网发布 arduino 数据以显示到 php

标签 php mysql arduino

我很难通过以太网盾将 arduino 数据发布到 php 中。我有来自 arduino 的数据(环境温度、设备等),想将其存储到 mysql 数据库中并显示在 php 网页上。所以我发现有人在 github 上用无线方式做这件事:https://github.com/ericbenwa/POST-Arduino-Data-Wireless/blob/master/arduino_post/arduino_post.ino

所以我决定修改其中的一些代码并在我的本地主机服务器上进行。但是当我在 arduino 上运行时,它没有连接并且连接失败。请帮忙!

//#include //#include

// EDIT: Change the 'ssid' and 'password' to match your network
//char ssid[] = "yournetwork";  // wireless network name
//char password[] = "yourpassword"; // wireless password
//int status = WL_IDLE_STATUS;
//WiFiClient client;
#include <Ethernet.h>
#include <SPI.h>

byte mac[] = { 0x90,0xA2,0xDA,0x0D,0x0D,0xB1};  //Replace with your Ethernet shield MAC
EthernetClient client;
IPAddress ip(198, 100, 130, 65); //ethernet ip address attatched to my ethernet shield

// EDIT: 'Server' address to match your domain
char server[] = "127.0.0.1"; // This could also be 192.168.1.18/~me if you are running a server on your computer on a local network.

// This is the data that will be passed into your POST and matches your mysql column
int yourarduinodata = 999;
String yourdatacolumn = "yourdata=";
String yourdata;

void setup()
{
Serial.begin(9600);
Ethernet.begin(mac,ip);
delay(1000);
Serial.println("connecting...");
postData();
}


// This is the data that will be passed into your POST and matches your mysql column
/*int yourarduinodata = 999;
String yourdatacolumn = "yourdata=";
String yourdata;

void setup() {
  Serial.begin(9600);

  connectWifi();

  // You're connected now, so print out the status
  printWifiStatus();

  postData();
}*/

void loop() {

}

/*void connectWifi() {
  // Attempt to connect to wifi network
  while ( status != WL_CONNECTED) {
    Serial.print("Attempting to connect to SSID: ");
    Serial.println(ssid);
    status = WiFi.begin(ssid, password);
    // Wait 10 seconds for connection
    delay(10000);
  }
}*/

/*void printWifiStatus() {
  // Print the SSID of the network you're attached to
  Serial.print("SSID: ");
  Serial.println(WiFi.SSID());

  // Print your WiFi shield's IP address
  IPAddress ip = WiFi.localIP();
  Serial.print("IP Address: ");
  Serial.println(ip);

  // Print the received signal strength
  long rssi = WiFi.RSSI();
  Serial.print("signal strength (RSSI):");
  Serial.print(rssi);
  Serial.println(" dBm");
}*/

// This method makes a HTTP connection to the server and POSTs data
void postData() {
  // Combine yourdatacolumn header (yourdata=) with the data recorded from your arduino
  // (yourarduinodata) and package them into the String yourdata which is what will be
  // sent in your POST request
  yourdata = yourdatacolumn + yourarduinodata;

  // If there's a successful connection, send the HTTP POST request
  if (client.connect(server, 80)) {
    Serial.println("connecting...");

    // EDIT: The POST 'URL' to the location of your insert_mysql.php on your web-host
    client.println("POST /data/insert_mysql.php HTTP/1.1");

    // EDIT: 'Host' to match your domain
    client.println("Host:127.0.0.1 ");
    client.println("User-Agent: Arduino/1.0");
    client.println("Connection: close");
    client.println("Content-Type: application/x-www-form-urlencoded;");
    client.print("Content-Length: ");
    client.println(yourdata.length());
    client.println();
    client.println(yourdata); 
  } 
  else {
    // If you couldn't make a connection:
    Serial.println("Connection failed");
    Serial.println("Disconnecting.");
    client.stop();
  }
}

最佳答案

您在此处显示的程序在您的设备上运行,对吗?

主机ip号127.0.0.1是一个特殊的IP地址。它始终表示“运行当前程序的机器”。因此,您的 arduino 代码正在尝试连接到同一 arduino 设备上的网络服务器,而不是您的服务器。

您需要使用要连接的服务器计算机的网络 IP 地址。更新这一行。

 char server[] = "127.0.0.1"

我会告诉你在这里放什么,但我不知道。您必须找出服务器的 IP 地址。

关于php - 通过以太网发布 arduino 数据以显示到 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19843671/

相关文章:

php - 随机 map 生成器 - 在网格上创建区域

php - 打开动态文件(fopen)

php - 获取值中的点(句号)会破坏 SQL 查询 (PDO)

c++ - 将对象数组的引用传递给函数

c - 奇怪的变量行为 - Arduino Uno rev 3

c - 修改Arduino代码以读取串口来控制移位寄存器

php - 在子目录中创建无限的附加页面

javascript - 如何实现带分页的目录

php - 如何从 .JS 文件中重置一次性 PHP 表单 token 以防止表单泛滥?

mysql - 如何将 “flatten”或 “collapse” 1D mysql表转换成2D?