mirror of
https://github.com/erjiang/usbscale.git
synced 2025-07-05 20:14:25 -06:00
14 lines
281 B
C
14 lines
281 B
C
/*
|
|
* This file is a list of all currently-recognized scales,
|
|
* by their vendor and product IDs.
|
|
*
|
|
* For example, the USB product 1446:6173 becomes {0x1446, 0x6173}
|
|
*/
|
|
|
|
// array length
|
|
int scalesc = 1;
|
|
|
|
uint16_t scales[][] = {
|
|
{0x1446, 0x6173} // Stamps.com USB scale
|
|
}
|