Just wanted to know what the meaning of the last ' f ' was in this line of code ?
Thought it might mean float but why would that be needed when the line is creating a Float or does any fraction entered or a result possibly having a fraction always have to be denoted as a float ?
... which on the Arduino is identical to a float.
The compiler is smart enough to know that 60.0 is a float but adding the 'f' does no harm.
The compiler assumes 60 is an int. Append either 'f' or '.0' to make it a float or cast it: '(float)60' or 'float(60)'.