Index: trunk/FACT++/src/smartfact.cc
===================================================================
--- trunk/FACT++/src/smartfact.cc	(revision 13952)
+++ trunk/FACT++/src/smartfact.cc	(revision 13953)
@@ -408,4 +408,5 @@
 
     bool fSunIsVisible;
+    bool fMoonIsVisible;
 
     int fHasError;
@@ -673,4 +674,5 @@
 
         fSunIsVisible = astro.state>=3 && astro.state<=5;
+        fMoonIsVisible = !fSunIsVisible && moon.visible;
 
         ofstream(fPath+"/weather.data") << out.str();
@@ -1797,5 +1799,5 @@
             }
             if (fDimDriveControl.state()==Drive::State::kMoving)
-                out << " &#8362;";
+                out << " &#10227;";
             out << setprecision(3);
         }
@@ -1804,4 +1806,7 @@
         if (fSunIsVisible)
             out << " &#9788;";
+        else
+            if (fMoonIsVisible)
+                out << " &#9790;";
         out << '\n';
 
