Verstehe nicht, wieso eine Hochsprache genutzt wird, wenn eh alles zu Fuss gemacht wird..
Wenn die Uhr im synchron Modus laufen soll, dann einfach statt config clock ein config dcf

oben die Bascom Uhr Routinen aktivieren

Dim Wochentag As String * 12
dim wtag as byte
config clock = modus

weiter unten den Wochentag ausgeben:

Wtag = Dayofweek()
If Wtag = 0 Then Wochentag = " Montag "
If Wtag = 1 Then Wochentag = " Dienstag "
If Wtag = 2 Then Wochentag = " Mittwoch "
If Wtag = 3 Then Wochentag = " Donnerstag "
If Wtag = 4 Then Wochentag = " Freitag "
If Wtag = 5 Then Wochentag = " Samstag "
If Wtag = 6 Then Wochentag = " Sonntag "