Skip to content

Commit

Permalink
Doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
philips77 committed Nov 6, 2019
1 parent e433bfa commit a86b0c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Without setting the local Model and specifying the message types, each message w
let nordicCompanyId: UInt16 = 0x0059
let element = Element(name: "Primary Element", location: .unknown, models: [
Model(sigModelId: 0x1001, delegate: GenericOnOffClientDelegate()),
Model(vendorModelId: (UInt32(nordicCompanyId) << 16) | 0x0001, delegate: SimpleOnOffDelegate())
Model(vendorModelId: 0x0001, companyId: nordicCompanyId, delegate: SimpleOnOffDelegate())
])
meshNetworkManager.localElements = [element]
```
Expand Down

0 comments on commit a86b0c6

Please sign in to comment.