1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

matrix_keypad: Move documentation to doxygen group

This commit is contained in:
Koen Zandberg 2023-02-23 11:39:11 +01:00
parent 0cce1bc067
commit f4d4784034
No known key found for this signature in database
GPG Key ID: BA1718B37D79F51C

View File

@ -11,12 +11,6 @@
* @ingroup drivers_sensors
* @brief Matrix keypad driver for row/column keypads
*
* @{
*
* @file
*
* @author Koen Zandberg <koen@bergzand.net>
*
* This module implements a simple matrix keypad driver where keys are connected
* between GPIO columns and rows. It works best with diodes in series with the
* switches to prevent key ghosting, but it can be used without these diodes.
@ -46,6 +40,13 @@
* When a state change is detected on a switch, the @ref matrix_keypad_cb_t
* callback is called with the row and column number together with the new state
* of the switch (pressed or not pressed).
*
* @{
*
* @file
* @brief Interface definition for the matrix keypad
*
* @author Koen Zandberg <koen@bergzand.net>
*/
#ifndef MATRIX_KEYPAD_H