usbscale/scales.h
2011-02-14 20:22:10 -05:00

25 lines
412 B
C

//
// scales.h
// ========
//
// This file is a list of all currently-recognized scales' vendor and product
// IDs.
//
// For example, the USB product 1446:6173 becomes {0x1446, 0x6173}
//
#include <stdint.h>
//
// **scalesc** should be kept updated with the length of the list.
//
int scalesc = 1;
//
// Scales
// ------
//
uint16_t scales[1][2] = {\
// Stamps.com 10-lb USB scale
{0x1446, 0x6a73}
};