Index: /trunk/FACT++/src/fscctrl.cc
===================================================================
--- /trunk/FACT++/src/fscctrl.cc	(revision 11672)
+++ /trunk/FACT++/src/fscctrl.cc	(revision 11673)
@@ -79,4 +79,17 @@
 
 private:
+    //
+    // From: http://de.wikipedia.org/wiki/Pt100
+    //
+    double GetTempPT1000(double R) const
+    {
+        const double R0 = 1000; // 1KOhm
+
+        const double a = 3.85e-3;
+
+        return (R/R0 - 1)/a;
+    }
+
+
     void HandleReceivedData(const bs::error_code& err, size_t bytes_received, int /*type*/)
     {
@@ -229,4 +242,10 @@
         }
 
+        for (size_t i=0; i<resist.size(); i++)
+            if (resist[i]>800 && resist[i]<2000)
+                cout << setw(2) << i << " - " << setw(4) << (int)resist[i] << ": " << setprecision(1) << fixed << GetTempPT1000(resist[i]) << endl;
+        else
+                cout << setw(2) << i << " - " << setw(4) << (int)resist[i] << ": " << "----" << endl;
+
         StartRead();
     }
@@ -530,4 +549,5 @@
     po::options_description control("FTM control options");
     control.add_options()
+        ("no-dim",        po_bool(),  "Disable dim services")
         ("addr,a",        var<string>("localhost:5000"),  "Network address of FTM")
         ("quiet,q",       po_bool(),  "Disable printing contents of all received messages (except dynamic data) in clear text.")
