Time is only used within TouchGFX.
 
Symbols
loading...
Files
loading...

Time struct

Syntax

struct Time {     Time() : hours(0), minutes(0), seconds(0), milliseconds(0) {}     explicit Time(int ms)     {         hours = ms / 3600000;         ms -= hours * 3600000;         minutes = ms / 60000;         ms -= minutes * 60000;         seconds = ms / 1000;         ms -= seconds * 1000;         milliseconds = ms;     }     Time(uint8_t h, uint8_t m, uint8_t s, uint16_t millis) : hours(h), minutes(m), seconds(s), milliseconds(millis) {}     bool operator==(const Time& other) const     {         return ((hours == other.hours) &&                 (minutes == other.minutes) &&                 (seconds == other.seconds) &&                 (milliseconds == other.milliseconds));     }     bool operator!=(const Time &other) const     {         return !(*this == other);     }     long operator-(const Time &other) const     {         int diff =  (hours - other.hours) * 60 * 60 * 1000 +             (minutes - other.minutes) * 60 * 1000 +             (seconds - other.seconds) * 1000 +             (milliseconds - other.milliseconds);         if (diff < 0)         {             diff += 24 * 60 * 60 * 1000;         }         return diff;     }     static float toSeconds(long milliseconds)     {         return milliseconds / (float) 1000.0;     }     bool hasValue() const     {         return ((hours > 0) ||                 (minutes > 0) ||                 (seconds > 0) ||                 (milliseconds > 0));     }     int getValueInSeconds() const     {         return hours * 3600 + minutes * 60 + seconds;     }     int getValueInMillis() const     {         return getValueInSeconds() * 1000 + milliseconds;     }     uint8_t hours;     uint8_t minutes;     uint8_t seconds;     uint16_t milliseconds; };

Fields

hours

No summary provided. Read more...

minutes

No summary provided. Read more...

seconds

No summary provided. Read more...

milliseconds

No summary provided. Read more...

Methods

operator!=() const

No summary provided. Read more...

operator-() const

No summary provided. Read more...

toSeconds()

No summary provided. Read more...

hasValue() const

No summary provided. Read more...

getValueInSeconds() const

No summary provided. Read more...

getValueInMillis() const

No summary provided. Read more...

operator() const

No summary provided. Read more...