File tree 5 files changed +15
-12
lines changed
5 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Version 2.9.14
4
+ - Fixed: Cannot connect to the server.
5
+
3
6
## Version 2.9.13
4
7
- "firmwareVersion" WebSocket header added.
5
8
- "version" WebSocket header renamed to "SDKVersion"
Original file line number Diff line number Diff line change 13
13
"maintainer" : true
14
14
}
15
15
],
16
- "version" : " 2.9.13 " ,
16
+ "version" : " 2.9.14 " ,
17
17
"frameworks" : " arduino" ,
18
18
"platforms" : [
19
19
" espressif8266" ,
Original file line number Diff line number Diff line change 1
1
name =SinricPro
2
- version =2.9.13
2
+ version =2.9.14
3
3
author =Boris Jaeger <
[email protected] >
4
4
maintainer =Boris Jaeger <
[email protected] >
5
5
sentence =Library for https://sinric.pro - simple way to connect your device to alexa
Original file line number Diff line number Diff line change 6
6
// Version Configuration
7
7
#define SINRICPRO_VERSION_MAJOR 2
8
8
#define SINRICPRO_VERSION_MINOR 9
9
- #define SINRICPRO_VERSION_REVISION 13
9
+ #define SINRICPRO_VERSION_REVISION 14
10
10
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
11
11
#define SINRICPRO_VERSION_STR "SinricPro (v" SINRICPRO_VERSION ")"
12
12
#define SINRICPRO_VERISON_INT SINRICPRO_VERSION_MAJOR * 1000000 + SINRICPRO_VERSION_MINOR * 1000 + SINRICPRO_VERSION_REVISION
Original file line number Diff line number Diff line change @@ -101,21 +101,21 @@ WebsocketListener::~WebsocketListener() {
101
101
}
102
102
103
103
void WebsocketListener::setExtraHeaders () {
104
- String headers = " appkey:" + appKey + " \r\n " ;
105
- headers += " deviceids :" + deviceIds + " \r\n " ;
106
- headers += " restoredevicestates :" + String (restoreDeviceStates? " true" : " false" ) + " \r\n " ;
107
- headers += " ip :" + WiFi.localIP ().toString () + " \r\n " ;
108
- headers += " mac :" + WiFi.macAddress () + " \r\n " ;
104
+ String headers = " appkey:" + appKey;
105
+ headers += " \r\n deviceids :" + deviceIds;
106
+ headers += " \r\n restoredevicestates :" + String (restoreDeviceStates ? " true" : " false" );
107
+ headers += " \r\n ip :" + WiFi.localIP ().toString ();
108
+ headers += " \r\n mac :" + WiFi.macAddress ();
109
109
#ifdef ESP8266
110
- headers += " platform:ESP8266 \r\n " ;
110
+ headers += " \r\n platform:ESP8266 " ;
111
111
#endif
112
112
#ifdef ESP32
113
- headers += " platform:ESP32 \r\n " ;
113
+ headers += " \r\n platform:ESP32 " ;
114
114
#endif
115
- headers += " SDKVersion :" + String (SINRICPRO_VERSION) + " \r\n " ;
115
+ headers += " \r\n SDKVersion :" + String (SINRICPRO_VERSION);
116
116
117
117
#ifdef FIRMWARE_VERSION
118
- headers += " firmwareVersion :" + String (FIRMWARE_VERSION);
118
+ headers += " \r\n firmwareVersion :" + String (FIRMWARE_VERSION);
119
119
#endif
120
120
121
121
DEBUG_SINRIC (" [SinricPro:Websocket]: headers: \r\n %s\r\n " , headers.c_str ());
You can’t perform that action at this time.
0 commit comments