Page 374 - 최강 아두이노 퍼스트 참고서
P. 374

// if there are incoming bytes available
                   // from the server, read them and print them:
                   if (client.available()) {
                     char c = client.read();
                     Serial.print(c);
                   }

                   // if the server's disconnected, stop the client:
                   // 대부분의 웹서버는 처리해주고 접속을 끊어버립니다.
                   // 연결안된 상태로 전환됩니다.
                   if (!client.connected()) {
                     Serial.println();
                     Serial.println("disconnecting.");
                     client.stop();

                     // do nothing forevermore:
                     // while(true) 무한 반복, 즉 정지입니다.
                     // 더이상 loop 를 실행하지 않는다는 의미입니다.
                     while (true);
                   }
                 }













































                                                   374
   369   370   371   372   373   374   375   376   377   378   379