Skip to content

Commit

Permalink
Merge pull request #30 from project-chip/amolivo-patch-1
Browse files Browse the repository at this point in the history
Adding link to SDK documentation
  • Loading branch information
amolivo authored Nov 14, 2024
2 parents 19991b0 + 603b1ac commit b53138a
Showing 1 changed file with 1 addition and 41 deletions.
42 changes: 1 addition & 41 deletions content/SDK/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,4 @@ pre = "<b>4. </b>"
+++

# The Matter SDK

The Matter Software Development Kit is a collection of tools to facilitate building Matter devices and control applications.
The SDK comprises of several different components to guide the development process.

### ZAP

The ZAP tool is a GUI tool that is used to generate a .zap file which describes the endpoint composition of your device, and the clusters that are on it along with their attributes, commands, features, etc.
This .zap file is used by the ZAP compiler along with the cluster definitions from the SDK to generate an Ember layer. This happens automatically as part of the build process, and the Ember layer is compiled into the firmware.

The tool produces .matter files which are a human-readable version of the .zap that can be used for review.

### Ember

The Ember layer is a generated layer that implements the composition of ONE SPECIFIC device. It looks at each message and determines if the device has implemented the selected attribute or command on the cluster on the selected endpoint, and then blocks or routes accordingly, based on the implementation and the access control. Valid requests are forwarded on to the cluster implementations to handle and invalid requests get sent back with an error. Ember layer is the piece that makes your device your device. Most are generated statically using zap.

### Chef

Chef is a tool to help generate sample device type zap configuration files which can be further customized with the ZAP tool.

### Core

The Core src folder contains the underlying Matter interoperability layers that provide essential functionality. These are used by the build process.

### CHIP Tool

CHIP Tool is our example controller app, used for development and testing of your Matter device.

### GN/Ninja

GN is part of the build system which was originally developed for the Chromium browser project, it is used to configure the build of a Matter device.
Ninja is the component which builds the device image.

### Platform Layer

The platform layer contains device specific delegate implementations for most of the common architectures on which Matter is deployed.

### Abstraction Layers

The SDK contains abstraction layers for Python, Java and Kotlin controllers.

The SDK is publicly available on [GitHub](https://github.com/project-chip/connectedhomeip)
You can find Matter's SDK documentation here: https://project-chip.github.io/connectedhomeip-doc/index.html

0 comments on commit b53138a

Please sign in to comment.