B4J Programming Press on the image to return to the main documentation page.

rKeypad

List of types:

Keypad

Keypad

This library is based on "Keypad Library for Arduino".
It monitors the state of a connected keypad.

Events:

KeyPressed (Key As String)

Members:


  Initialize (Keys As String, RowPins() As Byte, ColPins() As Byte, KeyPressedSub As SubVoidB4RString) As void

Members description:

Initialize (Keys As String, RowPins() As Byte, ColPins() As Byte, KeyPressedSub As SubVoidB4RString) As void
Initializes the keypad and starts monitoring the keys state.
Keys - A string with the keys characters, one row after another.
RowPins - The row pins.
ColPins - The column pins.
KeyPressedSub - Sub that will handle the KeyPressed event.
Top