devo gestire una tastiera 4x3 e voglio che il microprocessore sia in powerdown fino a quando non viene premuto un tasto della tastiera... qualcuno ha un idea? grazie.
Ho seguito per il collegamento della tastiera l'esempio del Bascom Getkbd e funziona correttamente...
il codice che ho usato è:
- Code: Select all
'********TEST KEYBOARD
Do
Keyread = Getkbd()
If Keyread <> 0 Then
Key = Lookup(keyread , Dta)
Locate 2 , 1
Lcd Key ; " " ; Keyread ; " "
Do
Waitms 1
Keyread = Getkbd()
Loop Until Keyread = 0
End If
Loop
end
Dta:
Data 12 , 9 , 6 , 3 , 0 , 8 , 5 , 2 , 11 , 7 , 4 , 1
'****END TEST