Skip to content

Commit

Permalink
Update comment text a bit to be more user friendly.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Nov 16, 2023
1 parent c8bb119 commit 2508afa
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,15 @@ using namespace chip::app::Clusters::BarrierControl;
using chip::Protocols::InteractionModel::Status;

// this is NOT in any spec (CHIP spec does not currently have BarrierControl)
// and XMLs do not attach these enums to clusters. SO set some constants here
// and XMLs do not attach these enums to clusters.
//
// This directly defines some constants. These could be replaced with real
// constants if we ever have some BarrierControl in the matter specification.
namespace chip {
namespace app {
namespace Clusters {
namespace BarrierControl {

namespace Position {
static constexpr uint8_t kClosed = 0;
static constexpr uint8_t kOpen = 100;
Expand Down

0 comments on commit 2508afa

Please sign in to comment.