Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc	(revision 2384)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.cc	(revision 2514)
@@ -65,4 +65,7 @@
         cout << "Hum: " << hum << "%" << endl;
 
+        fHumidity = hum;
+        fTemperature = temp;
+
         fComStat = kCmdReceived;
         return true;
Index: trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 2384)
+++ trunk/MagicSoft/Cosy/tcpip/MCeCoCom.h	(revision 2514)
@@ -31,4 +31,7 @@
     ComStatus_t fComStat; // communication status
 
+    Float_t fHumidity;    // [%]
+    Float_t fTemperature; // degrees celsius
+
     virtual bool InterpreteCmd(TString cmd, TString str);
 
@@ -43,4 +46,7 @@
     bool Send(const char *str);
     void SetStatus(Byte_t s) { fStatus=s; }
+
+    Float_t GetHumidity() const { return fHumidity; }
+    Float_t GetTemperature() const { return fTemperature; }
 };
 
Index: trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc
===================================================================
--- trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 2384)
+++ trunk/MagicSoft/Cosy/tcpip/MTcpIpIO.cc	(revision 2514)
@@ -6,4 +6,6 @@
 #include <TSocket.h>
 #include <TServerSocket.h>
+
+#undef DEBUG
 
 using namespace std;
@@ -71,7 +73,7 @@
         return false;
     }
-
+#ifdef DEBUG
     cout << "Tx: " << msg << flush;
-
+#endif
     return true;
 }
