added display sketch

This commit is contained in:
Lucas Pleß 2018-12-29 19:41:35 +01:00
parent 4532f82d84
commit e625736197
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
import processing.net.*;
Client myClient;
String dataIn;
void setup() {
size(800, 480);
myClient = new Client(this, "151.217.154.23", 2323);
background(0);
dataIn = "23.23";
}
void draw() {
background(0);
if (myClient.available() > 0) {
dataIn = myClient.readString();
}
textSize(210);
float w = textWidth(dataIn);
text(dataIn, (width-w)/2, height/2);
textSize(80);
w = textWidth("km/h");
text("km/h", (width-w)/2, height - 60);
}