diff --git a/50-usb-scale.rules b/50-usb-scale.rules index c540173..e15cea2 100644 --- a/50-usb-scale.rules +++ b/50-usb-scale.rules @@ -7,3 +7,4 @@ SUBSYSTEM=="usb", ATTR{idVendor}=="6096", ATTR{idProduct}=="0158", MODE="0776" SUBSYSTEM=="usb", ATTR{idVendor}=="0b67", ATTR{idProduct}=="555e", MODE="0776" SUBSYSTEM=="usb", ATTR{idVendor}=="0922", ATTR{idProduct}=="8004", MODE="0776" SUBSYSTEM=="usb", ATTR{idVendor}=="0922", ATTR{idProduct}=="8003", MODE="0776" +SUBSYSTEM=="usb", ATTR{idVendor}=="08df", ATTR{idProduct}=="0200", MODE="0776" diff --git a/scales.h b/scales.h index 52a605e..940f062 100644 --- a/scales.h +++ b/scales.h @@ -12,7 +12,7 @@ // // **NSCALES** should be kept updated with the length of the list. // -#define NSCALES 9 +#define NSCALES 10 // // What is the number of the weighing result to show, as the first result may be incorrect (from the previous weighing) @@ -41,5 +41,7 @@ uint16_t scales[NSCALES][2] = {\ // Dymo-CoStar Corp. M25 Digital Postal Scale {0x0922, 0x8004}, // DYMO 1772057 Digital Postal Scale - {0x0922, 0x8003} + {0x0922, 0x8003}, + // Pitney Bowes 10lb scale 397-B (X.J. Group XJ-6K809) + {0x0d8f, 0x0200} };