我有一個Arduino通過Ethernet Shield通過AJAX每秒打印出一個值。我想在Flot中繪製這個值。這要求值被放在一個JSON格式像這樣Ajax爲JSON添加值,每秒鐘繪製圖形
[[epochtimestamp, value], [epochtimestamp, value]]
所以我在想,如果你能幫助我使用JavaScript/AJAX(或PHP,如果你認爲它是合適的),以每秒得到這個值,將它添加到.txt文件(用於存儲以前的值)內的JSON中,因此Flot可以讀取所有值並創建這些值的基於時間的圖形,但每秒都會通過AJAX更新圖形。
以下是每秒需要發生的基本過程。
- Arduino的更新值(我已經做了位),它到JSON使用時間戳
- 海軍報的更新將該值和圖表的新值
- Javascript或PHP文件。
下面是我已經開始的一些代碼,但它必須每秒由AJAX調用,並且不會完成整個工作。
<?php
$file = 'data.txt';
$webpage = 'test.txt';
$t = time(); // Open the file to get existing content
$current = file_get_contents($file);
$data = file_get_contents($webpage);
// Append a new person to the file
if ($current < 1) {
$current .= "[[" + $t + "," + $data + "]";
} else {
$current .= ", " + "[" + $t + "," + $data + "]";
} // Write the contents back to the file
file_put_contents($file, $current);
echo $current;
?>
我不確定使用Javascript/AJAX會更容易嗎?
你可以請張貼一些代碼,如果你使用任何? – 2014-10-02 07:35:33
那麼我開始使用PHP將其添加到文件等,但它必須每秒由AJAX調用。 <?php $ file ='data.txt'; $ webpage ='test.txt' $ t = time(); //打開文件以獲得現有內容 $ current = file_get_contents($ file); ($ current <1){ \t $ current。=「[[」+ $ t +「,」+ $ data +「) $ data = file_get_contents($ webpage) //將一個新人追加到文件 ]「; } else { \t $ current。=「,」+「[」+ $ t +「,」+ $ data +「]」; } //將內容寫回文件 file_put_contents($ file,$ current); echo $ current; ?> – Peter 2014-10-02 07:45:53
我也是15,並試圖學習如此任何建議等或意見,以幫助我非常感謝。 – Peter 2014-10-02 07:51:38