そこで、Arduino Pulseセンサーからパルスデータを受け取り、それを.txtファイルに保存するphpファイルを作成しました。コードは次のとおりです。
<?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ファイルからそのdata.txtにjsonオブジェクトとしてアクセスしたいので、これを思いつきましたが、うまくいかないようです:
<?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);
}
}
?>
どんな提案でも大歓迎です。私はそれが可能だと感じています。
一番、
M