How to save serial print to an FTP server?
in
Programming Questions
•
1 year ago
I getting a information sent to me from my Arduino with a bluetooth shield; using this simple code:
My intentions are to put it to a web sever (sftp) and be able load it through a web app. Does anyone know how I can do such a thing? Thanks!
- import processing.serial.*;
- Serial myPort; // The serial port
- void setup(){
- String BlueT = Serial.list()[4];
- myPort = new Serial(this, BlueT , 115200);
- }
- void draw(){
- println(myPort.read());
- }
1