We are about to switch to a new forum software. Until then we have removed the registration on this forum.
how do I read and store (for use) Serial datas that comes in finite sets of numbers; 113,222,1333,3344 ?
I don't know how to view their exact values with Processing. The Ardunio Serial monitor shows groups of 11 numbers being generated at a rate of one group approximately each second. I want to graph these values but I need to isolate and gain control first. Currently, my code gets me a group of binary 1's but I want Exact values and a way to control them. Any help is appreciated
`
import processing.serial.*;
Serial port;
int data;
void setup(){
size(500,500);
String portName = Serial.list()[0];
port = new Serial (this, Serial.list()[0],9600);
int val = port.read();
for (int i = 0; i <10; i++) {
print(val);}
} }`
Answers
https://forum.Processing.org/two/discussions/tagged?Tag=buffer()