Serial communication
in
Integration and Hardware
•
1 year ago
Hey,
I'm trying to get my arduino (link) sent data to processing which logs the data. I do this because arduino can't log the data itself. The data that is sent has a resolution of 10bits, so I use an integer (16bits). I divide this integer into two bytes because of the protocol. Processing has to paste these two bytes to eachother to give me my correct data.
The problem I have in these programs is that processing creates a file, but it stays empty. I allready checked that arduino is sending data to processing so I think the problem is in processing. Does anybody see the problem?
ArduinoProgram:
ProcessingProgram:
It's about my first experience with this stuff
I'm trying to get my arduino (link) sent data to processing which logs the data. I do this because arduino can't log the data itself. The data that is sent has a resolution of 10bits, so I use an integer (16bits). I divide this integer into two bytes because of the protocol. Processing has to paste these two bytes to eachother to give me my correct data.
The problem I have in these programs is that processing creates a file, but it stays empty. I allready checked that arduino is sending data to processing so I think the problem is in processing. Does anybody see the problem?
ArduinoProgram:
- int sensePin=0;
- int x;
- unsigned long current_time;
- unsigned long previous_time;
- int time_stamp;
- void setup()
- {
- Serial.begin(115200);
- previous_time = micros();
- }
- void loop()
- {
- x=analogRead(sensePin);
- current_time = micros();
- time_stamp = int(current_time - previous_time);
- // while(time_stamp<500) {
- // current_time = micros();
- // time_stamp = int(current_time - previous_time);
- // }
- previous_time = current_time;
- Serial.write(255);
- Serial.write(lowByte(x));
- Serial.write(highByte(x));
- Serial.write(lowByte(time_stamp));
- Serial.write(highByte(time_stamp));
- }
ProcessingProgram:
- import processing.serial.*;
- import java.util.Date;
- Serial myPort;
- FileWriter file;
- String filename;
- void setup()
- {
- myPort = new Serial(this, "COM4", 115200);
- long thisDate = new Date().getTime();
- filename = "output-" + thisDate + ".txt";
- try {
- String emptyStart = "";
- file = new FileWriter(filename, false); // Wtrite empty string to file to clear it on start
- file.write(emptyStart, 0, emptyStart.length()); //(string, start char, end char)
- //file.close();
- }
- catch(Exception e)
- {
- println("Error: Can't open file!");
- }
- }
- void draw()
- {
- readSerial();
- }
- void readSerial()
- {
- println(myPort.available());
- if (myPort.available() > 5) {
- int serial_in = myPort.read(); // read a byte from the Serial Port
- while (serial_in != 255) {
- serial_in = myPort.read(); // read until value 255 is read
- }
- int lowByte = myPort.read();
- int highByte = myPort.read();
- int sample = highByte * 256 + lowByte;
- lowByte = myPort.read();
- highByte = myPort.read();
- int timestamp = highByte * 256 + lowByte;
- myPort.clear();
- }
- }
- void keyPressed(){
- if ( key == 's' ){
- try {
- file.close();
- } catch (IOException e) {
- System.err.println(e);
- }
- exit();
- }
- }
It's about my first experience with this stuff

1