File Manager for PicoMite


Author Message
JohnS
Guru

Joined: 18/11/2011
Location: United Kingdom
Posts: 4298
Posted: 05:18pm 17 Jan 2025      

  twofingers said  As Peter wrote, keycode could sometimes help.
However, there are differences between USB and USB+Console.
Dim key$
CLS
Print "press a key to check! EXIT with CTRL + <C>"
Do
 Do :Key$=Inkey$:Loop While Key$=""
 k=KeyDown(1)
 Print "Keycode: "Asc(key$),
 If key$>=" " Then
   Print "ASCII: ";key$,"Keydown(7): "KeyDown(7)
 Else
   Print
 EndIf
Loop
End

Michael

Just wondering whether k should be printed / why is it set?

John