diff --git a/proof-of-concept/lomoco_battery.c b/proof-of-concept/lomoco_battery.c
index fbe87d4..79e9d08 100644
--- a/proof-of-concept/lomoco_battery.c
+++ b/proof-of-concept/lomoco_battery.c
@@ -25,6 +25,7 @@
#define MOUSE_VX_NANO 0xc521
#define MOUSE_MX 0xc51a
#define MOUSE_MX_AIR 0xc525
+#define MOUSE_MX_1100 0xc526
static int send_report(int fd, int id, const unsigned int *buf, size_t size) {
struct hiddev_report_info rinfo;
@@ -159,6 +160,7 @@ int main (int argc, char **argv) {
((device_info.product == (short)MOUSE_VX) ||
(device_info.product == (short)MOUSE_VX_NANO) ||
(device_info.product == (short)MOUSE_MX_AIR) ||
+ (device_info.product == (short)MOUSE_MX_1100) ||
(device_info.product == (short)MOUSE_MX))) {
char dev[256] = {0};
I know zip about the above code. Is it possible to add it
to my Lomoco rules.d file? If so where do I begin?