Changeset 14139 for trunk


Ignore:
Timestamp:
06/09/12 22:01:53 (12 years ago)
Author:
tbretz
Message:
Display a drive error not just by a red background; replaced rc.index by state(); fixed a problem with the line break after the drive informations
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/smartfact.cc

    r14138 r14139  
    21192119            const State rc = fDimDriveControl.description();
    21202120            string col = HTML::kGreen;
    2121             if (rc.index==Drive::State::kMoving) // Moving
     2121            if (fDimDriveControl.state()==Drive::State::kMoving) // Moving
    21222122                col = HTML::kBlue;
    2123             if (rc.index==Drive::State::kArmed) // Armed
     2123            if (fDimDriveControl.state()==Drive::State::kArmed) // Armed
    21242124                col = HTML::kWhite;
    2125             if (rc.index==Drive::State::kTracking) // Tracking
     2125            if (fDimDriveControl.state()==Drive::State::kTracking) // Tracking
    21262126            {
    21272127                if (dev>60)   // ~1.5mm
     
    21302130                    col = HTML::kRed;
    21312131            }
    2132             if (rc.index==0x100)
     2132            if (fDimDriveControl.state()==0x100)
    21332133                col = HTML::kRed;
    21342134            out << col << '\t';
     
    21502150        else
    21512151            out << HTML::kWhite << '\t';
     2152
    21522153        if (fSun.time.IsValid() && fMoon.time.IsValid())
    21532154        {
     
    21652166                        out << " [" << fMoon.disk << "%]";
    21662167                }
    2167             out << '\n';
    2168         }
     2168        }
     2169
     2170        if (fDimDNS.online() && fDimDriveControl.state()==0x100)   // Armed, Moving, Tracking
     2171            out << " [ERR]";
     2172        out << '\n';
    21692173
    21702174        // ------------------- FSC ------------------
Note: See TracChangeset for help on using the changeset viewer.