gpt4 book ai didi

mysql - 将 arduino 引脚号打印到 MySQL

转载 作者:行者123 更新时间:2023-11-29 22:02:06 25 4
gpt4 key购买 nike

我已经在 Arduino Uno r3 + WiFi Shield 项目上工作了几个月,现在随着我的工作越来越复杂。我碰壁了。我开始这个项目时,编写任何类型的代码的经验为零,使用主板的经验也为零。如果您对我是否能理解您的回复有任何疑问,请简单化!

我做了一个简单的 arduino + wifi 屏蔽设置,可以将按钮推送报告到 MySql 数据库。后端的所有 .php 内容都可以工作,并且数据库由 phpmyadmin 管理。我正在尝试添加第二个按钮,但似乎无法使其工作,需要一些帮助。

我已经选择一个四字段数据库表作为输出:
第一列:关键。每个条目的连续的、唯一的标识符
第二列:传感器连接的引脚号
第三列:传感器值
第四列:日期和时间

请注意,我没有为每个传感器使用专用列。通过使用传感器引脚输入,我想简单地在一列中打印传感器引脚编号。这 (a) 节省了表格空间,(b) 允许 Arduino 使用与其引脚一样多的传感器。

这个想法是,每次按下按钮(即使同时按下两个按钮)都会获得自己的线路、传感器引脚源、值和时间戳。除非按下按钮,否则不会发送任何值。

我不知道如何实现这个!救命!

我的问题:
我如何要求草图检索信号源自的引脚并将其作为第二列中的数字写入数据库?第 13 行代码将写入引脚号(我认为)。 “senseval=”需要是一个报告源引脚的变量。

我不知道如何设置这个,谷歌已经导致了除了死胡同之外什么也没有。我希望这个帖子能够回答我确信还有更多人有/将会有的问题!

下面包含我的草图和下面的 insert_php_doc。我正在使用 github 上的 Silinas/Benoit“Arduino/Post”示例:

#include <SPI.h>
#include <WiFi.h>

char ssid[] = "linksys";
int status = WL_IDLE_STATUS;
WiFiClient client;
IPAddress server(xxx,xxx,xxx,xxx);

int inPin_0 = A0; // choose the input pin (sensor #1)
int inPin_1 = A1; // choose the input pin (sensor #2)
int sensorSense_0 = 0; //variable
int sensorSense_1 = 0; //variable
String SensorVal = "senseval=";// "yourdata="
String senseval;//yourdata //MUST KEEP sensval for PHP

void setup() {
Serial.begin(9600);
pinMode(inPin_0,INPUT);
pinMode(inPin_1,INPUT);
connectWifi();
}

void loop() {
sensorSense_0=analogRead(inPin_0);
if (sensorSense_0 == LOW){
postData();
delay(5000);
}
sensorSense_1=analogRead(inPin_1);
if (sensorSense_1 == LOW){
postData();
delay(5000);
}

void connectWifi() {
while ( status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
status = WiFi.begin(ssid);

delay(7000);
}
}
void postData() {
senseval=SensorVal+String(inPin_0);
senseval=SensorVal+String(inPin_1);

if (client.connect(server, 80)) {
Serial.println("connecting...");

client.println("POST /insert_mysql_doc.php? HTTP/1.1");
client.println("Host: www.<domain>.com");
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(senseval.length());//yourdata
client.println();
client.println(senseval);//yourdata
client.stop();
}
else {
Serial.println("Connection failed");
Serial.println("Disconnecting.");
client.stop();
connectWifi();
printWifiStatus();
}
}

https://github.com/ericbenwa/POST-Arduino-Data-Wireless 插入 PHP :

<?php

foreach ($_REQUEST as $key => $value)
{
if ($key == "senseval") {
$senseval = $value;
}
}

// EDIT: Your mysql database account information
$username = "test_user";
$password = "test_password";
$database = "test_db_name_here";
$tablename = "test_table_name_here";
$localhost = "localhost";

// Check Connection to Database
if (mysql_connect($localhost, $username, $password))
{
@mysql_select_db($database) or die ("Unable to select database");

// Next two lines will write into your table 'test_table_name_here' with 'yourdata' value from the arduino and will timestamp that data using 'now()'
$query = "INSERT INTO $tablename VALUES ($senseval,now())";
$result = mysql_query($query);
} else {
echo('Unable to connect to database.');
}

?>

最佳答案

使用定义引脚,它们在运行过程中不会更新我选择发送 pin 的 id 01,如果您想要 pin 号码,只需将调用更改为 postData

使用 static val 存储先前的开关状态并检测开关上的按下情况。使用 100ms 的延迟进行去抖,如果需要可以更新。选择做 2 个帖子来保持逻辑,但根据 http post 帖子的成本,将两个值放在一个帖子中似乎是更好的主意。

#include <SPI.h> 
#include <WiFi.h>

#define PIN0 A0; // choose the input pin (sensor #0)
#define PIN1 A1; // choose the input pin (sensor #1)

char ssid[] = "linksys";
int status = WL_IDLE_STATUS;
WiFiClient client;
IPAddress server(xxx,xxx,xxx,xxx);

void setup() {
Serial.begin(9600);
pinMode(PIN0, INPUT);
pinMode(PIN1, INPUT);
connectWifi();
}

void loop() {
static byte prev_0 = HIGH;
static byte prev_1 = HIGH;
byte val;

val = digitalRead(PIN0);
if (val == LOW && prev_0 == HIGH) {
postData(0);
}
prev_0 = val;
val = digitalRead(PIN1);
if (sensorSense_1 == LOW && prev_1 == HIGH) {
postData(1);
}
prev_1 = val;
delay(100); /* switch debouncing */
}

void connectWifi() {
while (status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
status = WiFi.begin(ssid);

delay(7000);
}
}
void postData(byte pin) {
char buf[8];
int len = snprintf(buf, sizeof(buf), "senseval=%d", pin);
if (client.connect(server, 80)) {
Serial.println("connecting...");

client.println("POST /insert_mysql_doc.php? HTTP/1.1");
client.println("Host: www.<domain>.com");
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(len);//yourdata
client.println();
client.println(buf);//yourdata
client.stop();
} else {
Serial.println("Connection failed");
Serial.println("Disconnecting.");
client.stop();
connectWifi();
printWifiStatus();
}
}

PHP 端更新很少添加intval以消除sql注入(inject)简化后值的获取方式处理缺失的帖子值

<?php 

if (empty($_REQUEST['senseval'])) {

echo('Missing data');
exit;
}
$senseval = intval($_REQUEST['senseval']);
// EDIT: Your mysql database account information
$username = "test_user";
$password = "test_password";
$database = "test_db_name_here";
$tablename = "test_table_name_here";
$localhost = "localhost";

// Check Connection to Database
if (mysql_connect($localhost, $username, $password))
{
@mysql_select_db($database) or die ("Unable to select database");

// Next two lines will write into your table 'test_table_name_here' with 'yourdata' value from the arduino and will timestamp that data using 'now()'
$query = "INSERT INTO $tablename VALUES ($senseval, now())";
$result = mysql_query($query);
} else {
echo('Unable to connect to database.');
}

?>

关于mysql - 将 arduino 引脚号打印到 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32534693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com