run autoformat in the example

This commit is contained in:
agdl 2015-11-26 11:44:05 +01:00
parent 2f00c938a7
commit 3229e422a2
1 changed files with 42 additions and 41 deletions

View File

@ -36,15 +36,15 @@ void loop() {
// This example code is in the public domain.
import processing.serial.*;
import processing.serial.*;
float redValue = 0; // red value
float greenValue = 0; // green value
float blueValue = 0; // blue value
float redValue = 0; // red value
float greenValue = 0; // green value
float blueValue = 0; // blue value
Serial myPort;
Serial myPort;
void setup() {
void setup() {
size(200, 200);
// List all the available serial ports
@ -57,14 +57,14 @@ void loop() {
myPort = new Serial(this, Serial.list()[0], 9600);
// don't generate a serialEvent() unless you get a newline character:
myPort.bufferUntil('\n');
}
}
void draw() {
void draw() {
// set the background color with the color values:
background(redValue, greenValue, blueValue);
}
}
void serialEvent(Serial myPort) {
void serialEvent(Serial myPort) {
// get the ASCII string:
String inString = myPort.readStringUntil('\n');
@ -84,7 +84,8 @@ void loop() {
blueValue = map(colors[2], 0, 1023, 0, 255);
}
}
}
}
*/
/* Max/MSP patch for this example