millis

Static millis 

Source
pub static millis: MillisInternalType
Expand description

Returns the number of milliseconds (thousandths of a second) since starting the sketch (when setup() is called). This information is often used for timing events and animation sequences.

Examples

let millisecond = millis();
text('Milliseconds \nrunning: \n' + millisecond, 5, 40);