Skip to content

Commit 65078c9

Browse files
committed
feat(matter): source code folder organization
1 parent 804ee12 commit 65078c9

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

libraries/Matter/examples/MatterCommissionTest/MatterCommissionTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// List of Matter Endpoints for this Node
66
// On/Off Light Endpoint
7-
#include <MatterOnOffLight.h>
7+
#include <MatterEndpoints/MatterOnOffLight.h>
88
MatterOnOffLight OnOffLight;
99

1010
// WiFi is manually set and started

libraries/Matter/examples/MatterComposedLights/MatterComposedLights.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// List of Matter Endpoints for this Node
66
// There will be 3 On/Off Light Endpoints in the same Node
7-
#include <MatterOnOffLight.h>
7+
#include <MatterEndpoints/MatterOnOffLight.h>
88
MatterOnOffLight OnOffLight1;
99
MatterOnOffLight OnOffLight2;
1010
MatterOnOffLight OnOffLight3;

libraries/Matter/examples/MatterOnOffLight/MatterOnOffLight.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
// List of Matter Endpoints for this Node
77
// On/Off Light Endpoint
8-
#include <MatterOnOffLight.h>
8+
#include <MatterEndpoints/MatterOnOffLight.h>
99
MatterOnOffLight OnOffLight;
1010

1111
// it will keep last OnOff state stored, using Preferences

libraries/Matter/src/MatterOnOffLight.cpp renamed to libraries/Matter/src/MatterEndpoints/MatterOnOffLight.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <Matter.h>
55
#include <app/server/Server.h>
6-
#include <MatterOnOffLight.h>
6+
#include <MatterEndpoints/MatterOnOffLight.h>
77

88
using namespace esp_matter;
99
using namespace esp_matter::endpoint;

0 commit comments

Comments
 (0)