私はArduinoを使用してプラントモニタを作成しようとしています。 処理は、Arduinoによるセンサー入力に基づいてhtmlファイルを書き込みます。 WinSCPは変更用に作成されたファイルを監視しており、ファイルが変更されたときにトラフFTPを直接アップロードします。処理中:arduino入力からHTMLファイルを書き込む
import processing.serial.*;
Serial myPort;
String dataReading = "";
int lol = 0;
String string0 = "<h1>Jurze Plants <img src=\"https://html-online.com/editor/tinymce/plugins/emoticons/img/smiley-laughing.gif\" alt=\"laughing\" /></h1>";
String string1 = "Moisture Level: ";
String string2 = " %<br> Motorstate: ";
String string3 = "<br> Temperature: ";
String string4 = " °C<br> Humidity: ";
String string5 = "%<br>";
void setup() {
size(500, 500);
myPort = new Serial(this, "COM4", 9600);
myPort.bufferUntil('x');
}
void draw() {
}
String [] dataOutput = {};
void serialEvent(Serial myPort) {
dataReading = myPort.readString();
if (dataReading!=null) {
dataOutput = split(dataReading, '\n');
String [] tempfile = {string0,string1,dataOutput[1],string2,dataOutput[2],string3,dataOutput[3],string4,dataOutput[4],string5 };
println("saving to html file...");
saveStrings("data/index.html",tempfile);
}
}
htmlコード私が手に:私は、このデータを使ってHTMLページを作成する処理で、次のコードを使用して
45
0
31
40
x
:Arduinoのシリアルを介して処理に次の送信され
初めての場合:
<h1>Jurze Plants <img src="https://html-online.com/editor/tinymce/plugins/emoticons/img/smiley-laughing.gif" alt="laughing" /></h1>
Moisture Level: 46 %<br>
Motorstate: 0 <br>
Temperature:31.00 °C <br>
Humidity: 35.00% <br>
アルドゥイーノからもう一度このように見えます:
<h1>Jurze Plants <img src="https://html-online.com/editor/tinymce/plugins/emoticons/img/smiley-laughing.gif" alt="laughing" /></h1>
Moisture Level: %<br>
Motorstate: 46 <br>
Temperature:0 °C <br>
Humidity: 31.00% <br>
私は配列に何か問題はありますか? ご協力いただければ幸いです! :D
勝つために[espruino](http://www.espruino.com/) –
'split'関数を表示できますか? –
@JérômeTeisseire 'dataOutput = split(dataReading、 '\ n');' – Jurze