|
| 1 | +/* |
| 2 | + This example code is in the Public Domain (or CC0 licensed, at your option.) |
| 3 | +
|
| 4 | + Unless required by applicable law or agreed to in writing, this |
| 5 | + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
| 6 | + CONDITIONS OF ANY KIND, either express or implied. |
| 7 | +*/ |
| 8 | + |
| 9 | +#include <esp_err.h> |
| 10 | +#include <esp_log.h> |
| 11 | +#include <nvs_flash.h> |
| 12 | +#if CONFIG_PM_ENABLE |
| 13 | +#include <esp_pm.h> |
| 14 | +#endif |
| 15 | + |
| 16 | +#include <esp_matter.h> |
| 17 | +#include <esp_matter_console.h> |
| 18 | +#include <esp_matter_ota.h> |
| 19 | + |
| 20 | +#include <common_macros.h> |
| 21 | +#include <app_priv.h> |
| 22 | +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD |
| 23 | +#include <platform/ESP32/OpenthreadLauncher.h> |
| 24 | +#endif |
| 25 | + |
| 26 | +#include <app/server/CommissioningWindowManager.h> |
| 27 | +#include <app/server/Server.h> |
| 28 | + |
| 29 | +static const char *TAG = "app_main"; |
| 30 | +uint16_t door_lock_endpoint_id = 0; |
| 31 | + |
| 32 | +using namespace esp_matter; |
| 33 | +using namespace esp_matter::attribute; |
| 34 | +using namespace esp_matter::endpoint; |
| 35 | +using namespace chip::app::Clusters; |
| 36 | +using namespace chip; |
| 37 | + |
| 38 | +constexpr auto k_timeout_seconds = 300; |
| 39 | + |
| 40 | +#if CONFIG_ENABLE_ENCRYPTED_OTA |
| 41 | +extern const char decryption_key_start[] asm("_binary_esp_image_encryption_key_pem_start"); |
| 42 | +extern const char decryption_key_end[] asm("_binary_esp_image_encryption_key_pem_end"); |
| 43 | + |
| 44 | +static const char *s_decryption_key = decryption_key_start; |
| 45 | +static const uint16_t s_decryption_key_len = decryption_key_end - decryption_key_start; |
| 46 | +#endif // CONFIG_ENABLE_ENCRYPTED_OTA |
| 47 | + |
| 48 | +static void app_event_cb(const ChipDeviceEvent *event, intptr_t arg) |
| 49 | +{ |
| 50 | + switch (event->Type) { |
| 51 | + case chip::DeviceLayer::DeviceEventType::kInterfaceIpAddressChanged: |
| 52 | + ESP_LOGI(TAG, "Interface IP Address changed"); |
| 53 | + break; |
| 54 | + |
| 55 | + case chip::DeviceLayer::DeviceEventType::kCommissioningComplete: |
| 56 | + ESP_LOGI(TAG, "Commissioning complete"); |
| 57 | + break; |
| 58 | + |
| 59 | + case chip::DeviceLayer::DeviceEventType::kFailSafeTimerExpired: |
| 60 | + ESP_LOGI(TAG, "Commissioning failed, fail safe timer expired"); |
| 61 | + break; |
| 62 | + |
| 63 | + case chip::DeviceLayer::DeviceEventType::kCommissioningSessionStarted: |
| 64 | + ESP_LOGI(TAG, "Commissioning session started"); |
| 65 | + break; |
| 66 | + |
| 67 | + case chip::DeviceLayer::DeviceEventType::kCommissioningSessionStopped: |
| 68 | + ESP_LOGI(TAG, "Commissioning session stopped"); |
| 69 | + break; |
| 70 | + |
| 71 | + case chip::DeviceLayer::DeviceEventType::kCommissioningWindowOpened: |
| 72 | + ESP_LOGI(TAG, "Commissioning window opened"); |
| 73 | + break; |
| 74 | + |
| 75 | + case chip::DeviceLayer::DeviceEventType::kCommissioningWindowClosed: |
| 76 | + ESP_LOGI(TAG, "Commissioning window closed"); |
| 77 | + break; |
| 78 | + |
| 79 | + case chip::DeviceLayer::DeviceEventType::kFabricRemoved: |
| 80 | + { |
| 81 | + ESP_LOGI(TAG, "Fabric removed successfully"); |
| 82 | + if (chip::Server::GetInstance().GetFabricTable().FabricCount() == 0) |
| 83 | + { |
| 84 | + chip::CommissioningWindowManager & commissionMgr = chip::Server::GetInstance().GetCommissioningWindowManager(); |
| 85 | + constexpr auto kTimeoutSeconds = chip::System::Clock::Seconds16(k_timeout_seconds); |
| 86 | + if (!commissionMgr.IsCommissioningWindowOpen()) |
| 87 | + { |
| 88 | + /* After removing last fabric, this example does not remove the Wi-Fi credentials |
| 89 | + * and still has IP connectivity so, only advertising on DNS-SD. |
| 90 | + */ |
| 91 | + CHIP_ERROR err = commissionMgr.OpenBasicCommissioningWindow(kTimeoutSeconds, |
| 92 | + chip::CommissioningWindowAdvertisement::kDnssdOnly); |
| 93 | + if (err != CHIP_NO_ERROR) |
| 94 | + { |
| 95 | + ESP_LOGE(TAG, "Failed to open commissioning window, err:%" CHIP_ERROR_FORMAT, err.Format()); |
| 96 | + } |
| 97 | + } |
| 98 | + } |
| 99 | + break; |
| 100 | + } |
| 101 | + |
| 102 | + case chip::DeviceLayer::DeviceEventType::kFabricWillBeRemoved: |
| 103 | + ESP_LOGI(TAG, "Fabric will be removed"); |
| 104 | + break; |
| 105 | + |
| 106 | + case chip::DeviceLayer::DeviceEventType::kFabricUpdated: |
| 107 | + ESP_LOGI(TAG, "Fabric is updated"); |
| 108 | + break; |
| 109 | + |
| 110 | + case chip::DeviceLayer::DeviceEventType::kFabricCommitted: |
| 111 | + ESP_LOGI(TAG, "Fabric is committed"); |
| 112 | + break; |
| 113 | + |
| 114 | + case chip::DeviceLayer::DeviceEventType::kBLEDeinitialized: |
| 115 | + ESP_LOGI(TAG, "BLE deinitialized and memory reclaimed"); |
| 116 | + break; |
| 117 | + |
| 118 | + default: |
| 119 | + break; |
| 120 | + } |
| 121 | +} |
| 122 | + |
| 123 | +// This callback is invoked when clients interact with the Identify Cluster. |
| 124 | +// In the callback implementation, an endpoint can identify itself. (e.g., by flashing an LED or light). |
| 125 | +static esp_err_t app_identification_cb(identification::callback_type_t type, uint16_t endpoint_id, uint8_t effect_id, |
| 126 | + uint8_t effect_variant, void *priv_data) |
| 127 | +{ |
| 128 | + ESP_LOGI(TAG, "Identification callback: type: %u, effect: %u, variant: %u", type, effect_id, effect_variant); |
| 129 | + return ESP_OK; |
| 130 | +} |
| 131 | + |
| 132 | +// This callback is called for every attribute update. The callback implementation shall |
| 133 | +// handle the desired attributes and return an appropriate error code. If the attribute |
| 134 | +// is not of your interest, please do not return an error code and strictly return ESP_OK. |
| 135 | +static esp_err_t app_attribute_update_cb(attribute::callback_type_t type, uint16_t endpoint_id, uint32_t cluster_id, |
| 136 | + uint32_t attribute_id, esp_matter_attr_val_t *val, void *priv_data) |
| 137 | +{ |
| 138 | + esp_err_t err = ESP_OK; |
| 139 | + |
| 140 | + if (type == PRE_UPDATE) { |
| 141 | + /* Driver update */ |
| 142 | + app_driver_handle_t driver_handle = (app_driver_handle_t)priv_data; |
| 143 | + err = app_driver_attribute_update(driver_handle, endpoint_id, cluster_id, attribute_id, val); |
| 144 | + } |
| 145 | + |
| 146 | + return err; |
| 147 | +} |
| 148 | + |
| 149 | +extern "C" void app_main() |
| 150 | +{ |
| 151 | + esp_err_t err = ESP_OK; |
| 152 | + |
| 153 | + /* Initialize the ESP NVS layer */ |
| 154 | + nvs_flash_init(); |
| 155 | + |
| 156 | +#if CONFIG_PM_ENABLE |
| 157 | + esp_pm_config_t pm_config = { |
| 158 | + .max_freq_mhz = CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ, |
| 159 | + .min_freq_mhz = CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ, |
| 160 | +#if CONFIG_FREERTOS_USE_TICKLESS_IDLE |
| 161 | + .light_sleep_enable = true |
| 162 | +#endif |
| 163 | + }; |
| 164 | + err = esp_pm_configure(&pm_config); |
| 165 | +#endif |
| 166 | + |
| 167 | + /* Create a Matter node and add the mandatory Root Node device type on endpoint 0 */ |
| 168 | + node::config_t node_config; |
| 169 | + |
| 170 | + // node handle can be used to add/modify other endpoints. |
| 171 | + node_t *node = node::create(&node_config, app_attribute_update_cb, app_identification_cb); |
| 172 | + ABORT_APP_ON_FAILURE(node != nullptr, ESP_LOGE(TAG, "Failed to create Matter node")); |
| 173 | + |
| 174 | + door_lock::config_t door_lock_config; |
| 175 | + cluster::door_lock::feature::credential_over_the_air_access::config_t cota_config; |
| 176 | + cluster::door_lock::feature::pin_credential::config_t pin_credential_config; |
| 177 | + cluster::door_lock::feature::user::config_t user_config; |
| 178 | + // endpoint handles can be used to add/modify clusters. |
| 179 | + endpoint_t *endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE, NULL); |
| 180 | + ABORT_APP_ON_FAILURE(endpoint != nullptr, ESP_LOGE(TAG, "Failed to create door lock endpoint")); |
| 181 | + cluster_t *door_lock_cluster = cluster::get(endpoint, DoorLock::Id); |
| 182 | + cluster::door_lock::feature::credential_over_the_air_access::add(door_lock_cluster, &cota_config); |
| 183 | + cluster::door_lock::feature::pin_credential::add(door_lock_cluster, &pin_credential_config); |
| 184 | + cluster::door_lock::feature::user::add(door_lock_cluster, &user_config); |
| 185 | + cluster::door_lock::attribute::create_auto_relock_time(door_lock_cluster, 5); |
| 186 | + |
| 187 | + door_lock_endpoint_id = endpoint::get_id(endpoint); |
| 188 | + ESP_LOGI(TAG, "Door lock created with endpoint_id %d", door_lock_endpoint_id); |
| 189 | + |
| 190 | +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD |
| 191 | + /* Set OpenThread platform config */ |
| 192 | + esp_openthread_platform_config_t config = { |
| 193 | + .radio_config = ESP_OPENTHREAD_DEFAULT_RADIO_CONFIG(), |
| 194 | + .host_config = ESP_OPENTHREAD_DEFAULT_HOST_CONFIG(), |
| 195 | + .port_config = ESP_OPENTHREAD_DEFAULT_PORT_CONFIG(), |
| 196 | + }; |
| 197 | + set_openthread_platform_config(&config); |
| 198 | +#endif |
| 199 | + |
| 200 | + /* Matter start */ |
| 201 | + err = esp_matter::start(app_event_cb); |
| 202 | + ABORT_APP_ON_FAILURE(err == ESP_OK, ESP_LOGE(TAG, "Failed to start Matter, err:%d", err)); |
| 203 | + |
| 204 | + /* do nothing now */ |
| 205 | + door_lock_init(); |
| 206 | + |
| 207 | +#if CONFIG_ENABLE_ENCRYPTED_OTA |
| 208 | + err = esp_matter_ota_requestor_encrypted_init(s_decryption_key, s_decryption_key_len); |
| 209 | + ABORT_APP_ON_FAILURE(err == ESP_OK, ESP_LOGE(TAG, "Failed to initialized the encrypted OTA, err: %d", err)); |
| 210 | +#endif // CONFIG_ENABLE_ENCRYPTED_OTA |
| 211 | + |
| 212 | +#if CONFIG_ENABLE_CHIP_SHELL |
| 213 | + esp_matter::console::diagnostics_register_commands(); |
| 214 | + esp_matter::console::wifi_register_commands(); |
| 215 | +#if CONFIG_OPENTHREAD_CLI |
| 216 | + esp_matter::console::otcli_register_commands(); |
| 217 | +#endif |
| 218 | + esp_matter::console::init(); |
| 219 | +#endif |
| 220 | +} |
0 commit comments