Java/Comunicazione seriale: differenze tra le versioni

Contenuto cancellato Contenuto aggiunto
Riga 261:
If you correctly carried out the write operation (see above) then the read operation is as simple as one command:
 
<source lang=java> // Read the response
String response = is.readLine(); // if you sent "AT" then response == "OK"</source>
 
==== Problems with the simple Reading / Writing ====