drivers/saul: Added coulomb counter & ammeter
This commit is contained in:
parent
cc0e6dc779
commit
ac98c98a0d
@ -99,6 +99,8 @@ enum {
|
|||||||
SAUL_SENSE_OCCUP = 0x91, /**< sensor: occupancy */
|
SAUL_SENSE_OCCUP = 0x91, /**< sensor: occupancy */
|
||||||
SAUL_SENSE_PROXIMITY= 0x92, /**< sensor: proximity */
|
SAUL_SENSE_PROXIMITY= 0x92, /**< sensor: proximity */
|
||||||
SAUL_SENSE_RSSI = 0x93, /**< sensor: RSSI */
|
SAUL_SENSE_RSSI = 0x93, /**< sensor: RSSI */
|
||||||
|
SAUL_SENSE_CHARGE = 0x94, /**< sensor: coulomb counter */
|
||||||
|
SAUL_SENSE_CURRENT = 0x95, /**< sensor: ammeter */
|
||||||
SAUL_CLASS_ANY = 0xff /**< any device - wildcard */
|
SAUL_CLASS_ANY = 0xff /**< any device - wildcard */
|
||||||
/* extend this list as needed... */
|
/* extend this list as needed... */
|
||||||
};
|
};
|
||||||
|
|||||||
@ -55,6 +55,8 @@ const char *saul_class_to_str(const uint8_t class_id)
|
|||||||
case SAUL_SENSE_TVOC: return "SENSE_TVOC";
|
case SAUL_SENSE_TVOC: return "SENSE_TVOC";
|
||||||
case SAUL_SENSE_PROXIMITY: return "SENSE_PROXIMITY";
|
case SAUL_SENSE_PROXIMITY: return "SENSE_PROXIMITY";
|
||||||
case SAUL_SENSE_RSSI: return "SENSE_RSSI";
|
case SAUL_SENSE_RSSI: return "SENSE_RSSI";
|
||||||
|
case SAUL_SENSE_CHARGE: return "SENSE_CHARGE";
|
||||||
|
case SAUL_SENSE_CURRENT: return "SENSE_CURRENT";
|
||||||
case SAUL_CLASS_ANY: return "CLASS_ANY";
|
case SAUL_CLASS_ANY: return "CLASS_ANY";
|
||||||
case SAUL_SENSE_OCCUP: return "SENSE_OCCUP";
|
case SAUL_SENSE_OCCUP: return "SENSE_OCCUP";
|
||||||
default: return "CLASS_UNKNOWN";
|
default: return "CLASS_UNKNOWN";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user