MINUTE
 
Syntax


#include <RTC.bas>                 ' source in /Program Files/Coridium/BASIClib

#include <RTC17.bas>             ' for the PROplus and SuperPRO LPC175x

FUNCTION MINUTE(value)  'When called with -1 the current value for MINUTE is returned.

Description


Function setting or returning the day of the month.

When called with a value >= 0, the MINUTE is changed.
Range 0 to 59

Example

#include <RTC.bas>
...

MINUTE (15)

PRINT "This is ";  MONTH(0); "/"; DAY(0); "/"; YEAR(0), "at"; HOUR(-1); ":"; MINUTE(-1); ":"; SECOND(-1)
The output would look like:
This is 4/14/2006 at 13:15:30