1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

drivers/saul: Fixed documentation

There is no need to distinguish between sensors for electrical power or other
types of power.
This commit is contained in:
Marian Buschsieweke 2019-04-04 12:54:57 +02:00
parent a6476bd813
commit 3ebbec84c7
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -105,7 +105,7 @@ enum {
SAUL_SENSE_CAPACITANCE = 0x97, /**< sensor: capacitance */
SAUL_SENSE_VOLTAGE = 0x98, /**< sensor: voltage */
SAUL_SENSE_PH = 0x99, /**< sensor: pH */
SAUL_SENSE_POWER = 0x9A, /**< sensor: (electrical) power */
SAUL_SENSE_POWER = 0x9a, /**< sensor: power */
SAUL_CLASS_ANY = 0xff /**< any device - wildcard */
/* extend this list as needed... */
};