File tree Expand file tree Collapse file tree 20 files changed +39
-39
lines changed Expand file tree Collapse file tree 20 files changed +39
-39
lines changed Original file line number Diff line number Diff line change 24
24
// Color Light Endpoint
25
25
MatterColorLight ColorLight;
26
26
27
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
27
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
28
28
#if !CONFIG_ENABLE_CHIPOBLE
29
29
// WiFi is manually set and started
30
30
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -87,7 +87,7 @@ void setup() {
87
87
88
88
Serial.begin (115200 );
89
89
90
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
90
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
91
91
#if !CONFIG_ENABLE_CHIPOBLE
92
92
// We start by connecting to a WiFi network
93
93
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 23
23
// On/Off Light Endpoint
24
24
MatterOnOffLight OnOffLight;
25
25
26
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
26
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
27
27
#if !CONFIG_ENABLE_CHIPOBLE
28
28
// WiFi is manually set and started
29
29
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -33,7 +33,7 @@ const char *password = "your-password"; // Change this to your WiFi password
33
33
void setup () {
34
34
Serial.begin (115200 );
35
35
36
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
36
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
37
37
#if !CONFIG_ENABLE_CHIPOBLE
38
38
// We start by connecting to a WiFi network
39
39
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ MatterOnOffLight Light1;
25
25
MatterDimmableLight Light2;
26
26
MatterColorLight Light3;
27
27
28
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
28
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
29
29
#if !CONFIG_ENABLE_CHIPOBLE
30
30
// WiFi is manually set and started
31
31
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -62,7 +62,7 @@ void setup() {
62
62
63
63
Serial.begin (115200 );
64
64
65
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
65
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
66
66
#if !CONFIG_ENABLE_CHIPOBLE
67
67
// We start by connecting to a WiFi network
68
68
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 39
39
// Matter Contact Sensor Endpoint
40
40
MatterContactSensor ContactSensor;
41
41
42
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
42
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
43
43
#if !CONFIG_ENABLE_CHIPOBLE
44
44
// WiFi is manually set and started
45
45
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -73,7 +73,7 @@ void setup() {
73
73
74
74
Serial.begin (115200 );
75
75
76
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
76
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
77
77
#if !CONFIG_ENABLE_CHIPOBLE
78
78
// Manually connect to WiFi
79
79
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 24
24
// Dimmable Light Endpoint
25
25
MatterDimmableLight DimmableLight;
26
26
27
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
27
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
28
28
#if !CONFIG_ENABLE_CHIPOBLE
29
29
// WiFi is manually set and started
30
30
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -83,7 +83,7 @@ void setup() {
83
83
84
84
Serial.begin (115200 );
85
85
86
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
86
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
87
87
#if !CONFIG_ENABLE_CHIPOBLE
88
88
// We start by connecting to a WiFi network
89
89
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 24
24
// Color Light Endpoint
25
25
MatterEnhancedColorLight EnhancedColorLight;
26
26
27
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
27
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
28
28
#if !CONFIG_ENABLE_CHIPOBLE
29
29
// WiFi is manually set and started
30
30
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -91,7 +91,7 @@ void setup() {
91
91
92
92
Serial.begin (115200 );
93
93
94
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
94
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
95
95
#if !CONFIG_ENABLE_CHIPOBLE
96
96
// We start by connecting to a WiFi network
97
97
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 19
19
#include < WiFi.h>
20
20
#endif
21
21
22
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
22
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
23
23
#if !CONFIG_ENABLE_CHIPOBLE
24
24
// WiFi is manually set and started
25
25
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -125,7 +125,7 @@ void setup() {
125
125
delay (10 ); // Wait for Serial to initialize
126
126
}
127
127
128
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
128
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
129
129
#if !CONFIG_ENABLE_CHIPOBLE
130
130
// We start by connecting to a WiFi network
131
131
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 23
23
// Fan Endpoint - On/Off control + Speed Percent Control + Fan Modes
24
24
MatterFan Fan;
25
25
26
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
26
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
27
27
#if !CONFIG_ENABLE_CHIPOBLE
28
28
// WiFi is manually set and started
29
29
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -82,7 +82,7 @@ void setup() {
82
82
83
83
Serial.begin (115200 );
84
84
85
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
85
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
86
86
#if !CONFIG_ENABLE_CHIPOBLE
87
87
// We start by connecting to a WiFi network
88
88
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 30
30
// Matter Humidity Sensor Endpoint
31
31
MatterHumiditySensor SimulatedHumiditySensor;
32
32
33
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
33
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
34
34
#if !CONFIG_ENABLE_CHIPOBLE
35
35
// WiFi is manually set and started
36
36
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -66,7 +66,7 @@ void setup() {
66
66
67
67
Serial.begin (115200 );
68
68
69
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
69
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
70
70
#if !CONFIG_ENABLE_CHIPOBLE
71
71
// Manually connect to WiFi
72
72
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 31
31
// Single On/Off Light Endpoint - at least one per node
32
32
MatterOnOffLight OnOffLight;
33
33
34
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
34
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
35
35
#if !CONFIG_ENABLE_CHIPOBLE
36
36
// WiFi is manually set and started
37
37
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -68,7 +68,7 @@ void setup() {
68
68
// Initialize the LED GPIO
69
69
pinMode (ledPin, OUTPUT);
70
70
71
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
71
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
72
72
#if !CONFIG_ENABLE_CHIPOBLE
73
73
// Manually connect to WiFi
74
74
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 37
37
// Matter Occupancy Sensor Endpoint
38
38
MatterOccupancySensor OccupancySensor;
39
39
40
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
40
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
41
41
#if !CONFIG_ENABLE_CHIPOBLE
42
42
// WiFi is manually set and started
43
43
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -58,7 +58,7 @@ void setup() {
58
58
59
59
Serial.begin (115200 );
60
60
61
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
61
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
62
62
#if !CONFIG_ENABLE_CHIPOBLE
63
63
// Manually connect to WiFi
64
64
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 35
35
// Single On/Off Light Endpoint - at least one per node
36
36
MatterOnOffLight OnOffLight;
37
37
38
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
38
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
39
39
#if !CONFIG_ENABLE_CHIPOBLE
40
40
// WiFi is manually set and started
41
41
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -94,7 +94,7 @@ void setup() {
94
94
95
95
Serial.begin (115200 );
96
96
97
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
97
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
98
98
#if !CONFIG_ENABLE_CHIPOBLE
99
99
// Manually connect to WiFi
100
100
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 20
20
#endif
21
21
#include < Preferences.h>
22
22
23
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
23
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
24
24
#if !CONFIG_ENABLE_CHIPOBLE
25
25
// WiFi is manually set and started
26
26
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -74,7 +74,7 @@ void setup() {
74
74
75
75
Serial.begin (115200 );
76
76
77
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
77
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
78
78
#if !CONFIG_ENABLE_CHIPOBLE
79
79
// We start by connecting to a WiFi network
80
80
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 24
24
// On/Off Plugin Endpoint
25
25
MatterOnOffPlugin OnOffPlugin;
26
26
27
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
27
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
28
28
#if !CONFIG_ENABLE_CHIPOBLE
29
29
// WiFi is manually set and started
30
30
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -73,7 +73,7 @@ void setup() {
73
73
74
74
Serial.begin (115200 );
75
75
76
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
76
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
77
77
#if !CONFIG_ENABLE_CHIPOBLE
78
78
// We start by connecting to a WiFi network
79
79
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 30
30
// Matter Pressure Sensor Endpoint
31
31
MatterPressureSensor SimulatedPressureSensor;
32
32
33
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
33
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
34
34
#if !CONFIG_ENABLE_CHIPOBLE
35
35
// WiFi is manually set and started
36
36
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -66,7 +66,7 @@ void setup() {
66
66
67
67
Serial.begin (115200 );
68
68
69
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
69
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
70
70
#if !CONFIG_ENABLE_CHIPOBLE
71
71
// Manually connect to WiFi
72
72
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 23
23
// Generic Switch Endpoint - works as a smart button with a single click
24
24
MatterGenericSwitch SmartButton;
25
25
26
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
26
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
27
27
#if !CONFIG_ENABLE_CHIPOBLE
28
28
// WiFi is manually set and started
29
29
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -49,7 +49,7 @@ void setup() {
49
49
Serial.print (" Connecting to " );
50
50
Serial.println (ssid);
51
51
52
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
52
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
53
53
#if !CONFIG_ENABLE_CHIPOBLE
54
54
// Manually connect to WiFi
55
55
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 24
24
// Color Temperature CW/WW Light Endpoint
25
25
MatterColorTemperatureLight CW_WW_Light;
26
26
27
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
27
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
28
28
#if !CONFIG_ENABLE_CHIPOBLE
29
29
// WiFi is manually set and started
30
30
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -94,7 +94,7 @@ void setup() {
94
94
95
95
Serial.begin (115200 );
96
96
97
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
97
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
98
98
#if !CONFIG_ENABLE_CHIPOBLE
99
99
// We start by connecting to a WiFi network
100
100
Serial.print (" Connecting to " );
Original file line number Diff line number Diff line change 30
30
// Matter Temperature Sensor Endpoint
31
31
MatterTemperatureSensor SimulatedTemperatureSensor;
32
32
33
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
33
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
34
34
#if !CONFIG_ENABLE_CHIPOBLE
35
35
// WiFi is manually set and started
36
36
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -66,7 +66,7 @@ void setup() {
66
66
67
67
Serial.begin (115200 );
68
68
69
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
69
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
70
70
#if !CONFIG_ENABLE_CHIPOBLE
71
71
// Manually connect to WiFi
72
72
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change 30
30
// Matter Thermostat Endpoint
31
31
MatterThermostat SimulatedThermostat;
32
32
33
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
33
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
34
34
#if !CONFIG_ENABLE_CHIPOBLE
35
35
// WiFi is manually set and started
36
36
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
@@ -68,7 +68,7 @@ void setup() {
68
68
69
69
Serial.begin (115200 );
70
70
71
- // CONFIG_ENABLE_CHIPOBLE is enbaled when BLE is used to commission the Matter Network
71
+ // CONFIG_ENABLE_CHIPOBLE is enabled when BLE is used to commission the Matter Network
72
72
#if !CONFIG_ENABLE_CHIPOBLE
73
73
// Manually connect to WiFi
74
74
WiFi.begin (ssid, password);
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class MatterEndPoint {
64
64
// This callback is invoked when clients interact with the Identify Cluster of an specific endpoint.
65
65
bool endpointIdentifyCB (uint16_t endpoint_id, bool identifyIsEnabled);
66
66
67
- // User callaback for the Identify Cluster functionality
67
+ // User callback for the Identify Cluster functionality
68
68
void onIdentify (EndPointIdentifyCB onEndPointIdentifyCB);
69
69
70
70
protected:
You can’t perform that action at this time.
0 commit comments