User function explanation

In some case you want a special combinaison of function

With user function you can make a special function only for your need.

Separate each function with a semi colon ;

S1 Separator (space) S21 Separator (space space) in next version

S2 Separator / (slash)

S3 Separator : (colonn)

S4 Separator . (period) S24 Separator .. (period period) in next version

S5 Separator - (hyphen) S25 Separator -- (hyphen hyphen) in next version

S6 Separator , (comma)

DD Day numeric format example 25

DS Day short character format example Mon

DL Day Long character format example Monday

MM Month numeric format example 12

MS Month short character format example Sep

ML Month long character format example September

QU quantieme numeric format with a prefix depends of you language example D009 in english or J009 in french

SU for Sun UP (Sunrise)

SD for Sun Down (Sunset)

SM for Time for next solar event format is HH:MM

SU2 for Next Sunrise

WK Week of year numeric format with a prefix depends of you language example W25 in english or S25 in french

W+ Same as WK with + 1 (A special development for Craig) example W26 if WK=W25

W- Same as WK with - 1 (A special development for Craig) example W24 if WK=W25

YY year numeric format example 2021

Y year numeric (only 2 last numbers) format example 21


EXAMPLE 1 you want

Year with point with quantieme

Set in user function YY;S4;QU;

you will have this screen on your watch


EXAMPLE 2 you want

Sat-09 day of week short and day in numeric format

Set in user function DS;S5;DD;

you will have this screen on your watch


EXAMPLE 3 you want

Saturday 09 day of week long and day in numeric format

Set in user function DL;S1;DD;

you will have this screen on your watch


EXAMPLE 4 you want

Saturday January 09 day of week long , month of year long and day in numeric format

Set in user function DL;S1;ML;S1;DD;

Attention in some time you can have a problem with font size

you will have this screen on your watch


EXAMPLE 5 you want

2021/01/09 year and month and day in numeric format.

Set in user function YY;S2;MM;S2;DD;

Attention in some time you can have a problem with font size

you will have this screen on your watch


EXAMPLE 6 you want

January,09 month in long format and day in numeric format

Set in user function ML;S6;DD;

Attention in some time you can have a problem with font size

you will have this screen on your watch