소스 검색

remove debug

Chris Mullins 8 년 전
부모
커밋
1e6137c3b8
1개의 변경된 파일0개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 5
      lib/MiLight/MiLightClient.cpp

+ 0 - 5
lib/MiLight/MiLightClient.cpp

@@ -206,12 +206,9 @@ void MiLightClient::formatPacket(uint8_t* packet, char* buffer) {
 }
     
 void MiLightClient::flushPacket() {
-  Serial.print("Flushing packets");
-  
   PacketStream& stream = formatter->buildPackets();
   
   while (stream.hasNext()) {
-    Serial.print(".");
     write(stream.next());
     
     if (stream.hasNext()) {
@@ -219,7 +216,5 @@ void MiLightClient::flushPacket() {
     }
   }
   
-  Serial.println();
-  
   formatter->reset();
 }