Skip to content

Commit 7ed31f4

Browse files
committed
Merge branch 'master' into dev-2.9.3
2 parents efa8d52 + d896bff commit 7ed31f4

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/stale.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ exemptLabels:
1010
staleLabel: stale
1111
# Comment to post when marking an issue as stale. Set to `false` to disable
1212
markComment: >
13-
This issue has gone quiet. Spooky quiet. 👻
13+
This issue has gone quiet. Spooky quiet.
1414
We currently close issues after 14 days of inactivity. It’s been at least 7 days since the last update here.
1515
If we missed this issue or if you want to keep it open, please reply here.
1616
As a friendly reminder, the best way to fix this or any other problem is to provide a detailed error description including a serial log.
17-
Thanks for being a part of the SinricPro community! 💜
17+
Thanks for being a part of the SinricPro community!
1818
# Comment to post when closing a stale issue. Set to `false` to disable
1919
closeComment: >
2020
Hey again!
2121
It’s been 14 days since anything happened on this issue, so our friendly robot (that’s me!) is going to close it.
2222
Please keep in mind that I’m only a robot, so if I’ve closed this issue in error, I’m `HUMAN_EMOTION_SORRY`. Please feel free to comment on this issue or create a new one if you need anything else.
2323
As a friendly reminder, the best way to fix this or any other problem is to provide a detailed error description including a serial log.
24-
Thanks again for being a part of the SinricPro community! 💜
24+
Thanks again for being a part of the SinricPro community!

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ examples/Switch/.vscode
33
examples/Switch/.gitignore
44
.vscode/c_cpp_properties.json
55
.vscode/settings.json
6-
.github

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ Example 1
130130
* Windows Air Conditioner
131131
* Interior Blinds
132132
* Garage Door
133-
133+
* Custom devices
134134
---
135135

examples/doorbell/doorbell.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void setupWiFi() {
8282
// setup function for SinricPro
8383
void setupSinricPro() {
8484
// add doorbell device to SinricPro
85-
SinricPro.add<SinricProDoorbell>(DOORBELL_ID);
85+
SinricProDoorbell& myDoorbell = SinricPro[DOORBELL_ID];
8686
// setup SinricPro
8787
SinricPro.onConnected([](){ Serial.printf("Connected to SinricPro\r\n"); });
8888
SinricPro.onDisconnected([](){ Serial.printf("Disconnected from SinricPro\r\n"); });

0 commit comments

Comments
 (0)