-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ESP32 example app with basic and temperature cluster #3053
ESP32 example app with basic and temperature cluster #3053
Conversation
examples/temperature-measurement-app/esp32/main/DataModelHandler.cpp
Outdated
Show resolved
Hide resolved
examples/temperature-measurement-app/esp32/main/DeviceCallbacks.cpp
Outdated
Show resolved
Hide resolved
examples/temperature-measurement-app/esp32/main/gen/af-gen-event.h
Outdated
Show resolved
Hide resolved
examples/temperature-measurement-app/esp32/main/gen/att-storage.h
Outdated
Show resolved
Hide resolved
examples/temperature-measurement-app/esp32/main/gen/call-command-handler.c
Show resolved
Hide resolved
examples/temperature-measurement-app/esp32/main/gen/call-command-handler.c
Outdated
Show resolved
Hide resolved
examples/temperature-measurement-app/esp32/main/gen/clusters-callback-stubs.c
Show resolved
Hide resolved
Is the primary purpose of the app for rendezvous paring and secure session messaging or exposing the temperature sensor cluster? If the former, could we rename it so? |
The primary purpose is to measure the code/data size of a minimal CHIP app. That means it needs to support all the networky bits of CHIP, plus the required "utility" clusters, plus a small set (maybe just one, in this case) of "application" clusters for the actual app functionality. |
examples/temperature-measurement-app/esp32/main/gen/clusters-callback-stubs.c
Show resolved
Hide resolved
c405d59
to
5ad8431
Compare
5ad8431
to
131e713
Compare
@andy31415 this is ready for your approval, copyright stuff is fixed |
Create a esp32 app which supports basic and temperature sensor cluster. This app should be able to perform rendez vous paring and secure session messaging. Temperature measurement cluster was added from Simplicity studio.
Fixes #2979 #2980