Zitat Zitat von KL7000F
@for_ro: Wie würdest du den Bereich "Lesen" machen?
Hängt davon ab, welche Funktionalität du beim Lesen haben möchtest. Z.B. was die Taster für Hoch und Runter bewirken sollen.
Generell denke ich an so etwas ganz simples:
If Richtung = 0 Then Incr Position
If Richtung = 1 Then Decr Position
If Position = 31 Then Position = 1
If Position = 0 Then Position = 30
Codestring = Ecodestring(Position)
Codeuhr = Right(codestring , 8)
Codedat = Left(codeuhr , 4)
Codetime = Right(codeuhr , 4)
Zeitlcd = Left(codedat , 2) + "/" + Right(codedat , 2) + " " + Left(codetime , 2) + ":" + Right(codetime , 2)
usw.