├── .github ├── .jira_sync_config.yaml ├── pull_request_template.md └── workflows │ └── build-and-test-snap.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── README.md ├── lighting-common │ ├── BUILD.gn │ ├── include │ │ ├── ColorFormat.h │ │ └── LightingManager.h │ ├── lighting-app.matter │ ├── lighting-app.zap │ └── src │ │ ├── ColorFormat.cpp │ │ └── LightingManager.cpp └── linux │ ├── .gn │ ├── BUILD.gn │ ├── LightingAppCommandDelegate.cpp │ ├── LightingAppCommandDelegate.h │ ├── args.gni │ ├── build_overrides │ ├── include │ ├── CHIPProjectAppConfig.h │ └── LightingManager.h │ ├── main.cpp │ ├── src │ └── LightingManager.cpp │ └── third_party │ └── connectedhomeip ├── renovate.json ├── snap ├── hooks │ ├── configure │ └── install ├── local │ └── bin │ │ ├── load-snap-options.sh │ │ └── run.sh └── snapcraft.yaml ├── test-blink.cpp └── tests ├── README.md ├── go.mod ├── go.sum ├── gpio-mock.sh ├── inject-amd64-arch.sh ├── snap_test.go └── thread_tests ├── constants.go ├── local.go ├── remote.go └── thread_test.go /.github/.jira_sync_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/.github/.jira_sync_config.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-test-snap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/.github/workflows/build-and-test-snap.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/README.md -------------------------------------------------------------------------------- /app/lighting-common/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/lighting-common/BUILD.gn -------------------------------------------------------------------------------- /app/lighting-common/include/ColorFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/lighting-common/include/ColorFormat.h -------------------------------------------------------------------------------- /app/lighting-common/include/LightingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/lighting-common/include/LightingManager.h -------------------------------------------------------------------------------- /app/lighting-common/lighting-app.matter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/lighting-common/lighting-app.matter -------------------------------------------------------------------------------- /app/lighting-common/lighting-app.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/lighting-common/lighting-app.zap -------------------------------------------------------------------------------- /app/lighting-common/src/ColorFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/lighting-common/src/ColorFormat.cpp -------------------------------------------------------------------------------- /app/lighting-common/src/LightingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/lighting-common/src/LightingManager.cpp -------------------------------------------------------------------------------- /app/linux/.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/.gn -------------------------------------------------------------------------------- /app/linux/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/BUILD.gn -------------------------------------------------------------------------------- /app/linux/LightingAppCommandDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/LightingAppCommandDelegate.cpp -------------------------------------------------------------------------------- /app/linux/LightingAppCommandDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/LightingAppCommandDelegate.h -------------------------------------------------------------------------------- /app/linux/args.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/args.gni -------------------------------------------------------------------------------- /app/linux/build_overrides: -------------------------------------------------------------------------------- 1 | ../../build_overrides -------------------------------------------------------------------------------- /app/linux/include/CHIPProjectAppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/include/CHIPProjectAppConfig.h -------------------------------------------------------------------------------- /app/linux/include/LightingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/include/LightingManager.h -------------------------------------------------------------------------------- /app/linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/main.cpp -------------------------------------------------------------------------------- /app/linux/src/LightingManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/app/linux/src/LightingManager.cpp -------------------------------------------------------------------------------- /app/linux/third_party/connectedhomeip: -------------------------------------------------------------------------------- 1 | ../../../../ -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/renovate.json -------------------------------------------------------------------------------- /snap/hooks/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/snap/hooks/configure -------------------------------------------------------------------------------- /snap/hooks/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/snap/hooks/install -------------------------------------------------------------------------------- /snap/local/bin/load-snap-options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/snap/local/bin/load-snap-options.sh -------------------------------------------------------------------------------- /snap/local/bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/snap/local/bin/run.sh -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /test-blink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/test-blink.cpp -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/go.mod -------------------------------------------------------------------------------- /tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/go.sum -------------------------------------------------------------------------------- /tests/gpio-mock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/gpio-mock.sh -------------------------------------------------------------------------------- /tests/inject-amd64-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/inject-amd64-arch.sh -------------------------------------------------------------------------------- /tests/snap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/snap_test.go -------------------------------------------------------------------------------- /tests/thread_tests/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/thread_tests/constants.go -------------------------------------------------------------------------------- /tests/thread_tests/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/thread_tests/local.go -------------------------------------------------------------------------------- /tests/thread_tests/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/thread_tests/remote.go -------------------------------------------------------------------------------- /tests/thread_tests/thread_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/canonical/matter-pi-gpio-commander/HEAD/tests/thread_tests/thread_test.go --------------------------------------------------------------------------------