所以我创建了 php 文件,它从 Arduino Pulse 传感器接收脉冲数据并将其存储到 .txt 文件中。这是代码:
<?php
$pulse = $_GET["pulse"] ;
$file = fopen("data.txt", "a+");
$pulse.="\r\n";
fwrite($file, $pulse);//takes incoming data and writes it in the file
fclose($file);?>
所以我在 data.txt 中存储的只是来自脉冲传感器的一堆数字。我想从不同的 php 文件作为 json 对象访问该 data.txt,所以我想出了这个,但它似乎不起作用:
<?php
header('Content-type: application/json');
if(isset($_GET["request"])){
if($_GET["request"] == "info"){
$pulse = $_GET["pulse"];
$file = fopen("data.txt", "a+");
$pulse.="\r\n";
fwrite($file, $pulse);
fclose($file);
echo json_encode($file);
}
}
?>
任何建议都非常受欢迎,我觉得这是可能的。
最好的,
米