Skip to content

Commit

Permalink
Updated product finish to other and product color to black
Browse files Browse the repository at this point in the history
  • Loading branch information
pankore committed Aug 24, 2023
1 parent 7e9763b commit 6aced63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/Ameba/FactoryDataProvider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -668,14 +668,14 @@ CHIP_ERROR FactoryDataProvider::GetRotatingDeviceIdUniqueId(MutableByteSpan & un
CHIP_ERROR FactoryDataProvider::GetProductFinish(ProductFinishEnum * finish)
{
CHIP_ERROR err = CHIP_NO_ERROR;
*finish = ProductFinishEnum::kFabric;
*finish = ProductFinishEnum::kOther;
return err;
}

CHIP_ERROR FactoryDataProvider::GetProductPrimaryColor(ColorEnum * primaryColor)
{
CHIP_ERROR err = CHIP_NO_ERROR;
*primaryColor = ColorEnum::kPurple;
*primaryColor = ColorEnum::kBlack;
return err;
}

Expand Down

0 comments on commit 6aced63

Please sign in to comment.