ALso wenn ich das richtig verstanden habe dann müsste es so gehen ?


Code:
'HALLO1 an LCD
Hallo1 Alias LCD "Hallo1"


'HALLO2 an LCD
Hallo2 Alias LCD "Hallo2"


'TASTER1 an PD2
Taster1 Alias Pind.2
Config Pind.2 = Input


Do
   If Taster1 = 1 Then
      Hallo1 = 0
      Hallo2 = 1
   Else
      Hallo1 = 1
      Hallo2 = 0
   End If
Loop


End