Changes between Version 12 and Version 13 of rock/note/arduino
- Timestamp:
- Jan 20, 2010, 5:18:26 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified rock/note/arduino
v12 v13 97 97 98 98 void setup(){ 99 100 99 String arduinoPort = Serial.list()[0]; 101 100 port = new Serial(this, arduinoPort, 9600); 102 103 104 105 101 } 106 102 … … 111 107 URLConnection conn = url.openConnection(); 112 108 conn.connect(); // now connect to the Website 113 114 109 BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream())); 115 116 110 while ((data = in.readLine()) !=null){ 117 111 port.write(in.readLine()); 118 } 119 112 } 120 113 } 121 114 catch (Exception ex) { // If there was an error, stop the sketch … … 131 124 Serial.begin(9600); 132 125 } 133 134 126 void loop() 135 127 {