Skip to content

Commit 2f43de8

Browse files
committed
Fix product id
1 parent 0354319 commit 2f43de8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/valve/silabs/include/DrinkMachineCommon.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class DrinkMachineInfoProvider : public chip::DeviceLayer::DeviceInstanceInfoPro
4747

4848
CHIP_ERROR GetProductId(uint16_t & productId) override
4949
{
50-
productId = 0xFFFEu;
50+
productId = 0xB002u;
5151
return CHIP_NO_ERROR;
5252
}
5353
CHIP_ERROR GetPartNumber(char * buf, size_t bufSize) override

0 commit comments

Comments
 (0)