Skip to content

Commit 16fd9dd

Browse files
committed
Merge branch 'remove_insights' into 'main'
Remove esp-insights support for now See merge request app-frameworks/esp-matter!129
2 parents 91a0f52 + 9ec2d30 commit 16fd9dd

File tree

7 files changed

+1
-113
lines changed

7 files changed

+1
-113
lines changed

examples/common/app_insights/CMakeLists.txt

-16
This file was deleted.

examples/common/app_insights/Kconfig

-12
This file was deleted.

examples/common/app_insights/app_insights.c

-22
This file was deleted.

examples/common/app_insights/app_insights.h

-29
This file was deleted.

examples/common/app_insights/idf_component.yml

-20
This file was deleted.

examples/light/main/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(PRIV_REQUIRES_LIST device esp_matter esp_matter_console route_hook app_qrcode app_reset esp_matter_ota app_insights)
1+
set(PRIV_REQUIRES_LIST device esp_matter esp_matter_console route_hook app_qrcode app_reset esp_matter_ota)
22

33
idf_component_register(SRC_DIRS "."
44
PRIV_INCLUDE_DIRS "."

examples/light/main/app_main.cpp

-13
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,6 @@
1717

1818
#include <app_priv.h>
1919
#include <app_qrcode.h>
20-
#include <app_insights.h>
21-
22-
#if CONFIG_ESP_MATTER_ENABLE_INSIGHTS
23-
/*
24-
* Please check the below link to obtain the ESP Insights Auth Key
25-
* https://github.com/espressif/esp-insights/tree/4bc3b0685223a75df0ce71c73af70014f4dd1633/examples#set-up-esp-insights-account
26-
*/
27-
const char * INSIGHTS_AUTH_KEY = "<paste_insights_auth_key_here>";
28-
#endif
2920

3021
static const char *TAG = "app_main";
3122
int light_endpoint_id = 0;
@@ -103,8 +94,4 @@ extern "C" void app_main()
10394
#if CONFIG_ENABLE_OTA_REQUESTOR
10495
esp_matter_ota_requestor_init();
10596
#endif
106-
107-
#if CONFIG_ESP_MATTER_ENABLE_INSIGHTS
108-
app_insights_enable(INSIGHTS_AUTH_KEY);
109-
#endif
11097
}

0 commit comments

Comments
 (0)