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

Time::seconds field

Syntax

uint8_t seconds;

References

LocationReferrerScopeText
Time.hpp:93
uint8_t seconds;
Model.cpp:141Model::tick()Model
currentTime.seconds = (milliseconds / 1000) % 60;
Model.cpp:146Model::tick()Model
if (currentTime.seconds != previousTime.seconds)
Time.hpp:26Time::Time()Time
Time() : hours(0), minutes(0), seconds(0), milliseconds(0) {}
Time.hpp:34Time::Time()Time
seconds = ms / 1000;
Time.hpp:35Time::Time()Time
ms -= seconds * 1000;
Time.hpp:39Time::Time()Time
Time(uint8_t h, uint8_t m, uint8_t s, uint16_t millis) : hours(h), minutes(m), seconds(s), milliseconds(millis) {}
Time.hpp:45Time::operator() constTime
(seconds == other.seconds) &&
Time.hpp:59Time::operator-() constTime
(seconds - other.seconds) * 1000 +
Time.hpp:77Time::hasValue() constTime
(seconds > 0) ||
Time.hpp:83Time::getValueInSeconds() constTime
return hours * 3600 + minutes * 60 + seconds;

Data Use

Functions writing Time::seconds
Functions reading Time::seconds
all items filtered out
Time::seconds
Type of Time::seconds
Time::seconds
uint8_t
all items filtered out