20 lines
522 B
JavaScript
20 lines
522 B
JavaScript
function drawScreen() {
|
|
textSize(18);
|
|
if (isConnected) {
|
|
background(0, 255, 0);
|
|
text('Connected :)', 80, 15);
|
|
} else {
|
|
background(255, 0, 0);
|
|
textAlign(LEFT, TOP);
|
|
text('Disconnected :/', 80, 15);
|
|
}
|
|
|
|
text(receivedValue, 15, 40);
|
|
|
|
if(oldColorPickerValue != ledColorPicker.value() && millis()-millisecondTimerStart>50 && isConnected){
|
|
oldColorPickerValue = ledColorPicker.value();
|
|
sendData("LED Color" + ledColorPicker.value()+ "\n");
|
|
millisecondTimerStart = millis();
|
|
}
|
|
|
|
}
|