Skip to content

Commit be6ff76

Browse files
committed
Bum to version 2.9.10
1 parent 0f19c36 commit be6ff76

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

changelog.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelog
2+
## Version 2.9.10
3+
- Fixed event limitation in PowerLevelController
4+
- Example "RGB_LED_Stripe_5050.ino" extended to support color temperature
5+
- Example "ACUnit.ino" extended to support onRangeValue / adjustRangeValue
6+
27
## Version 2.9.9
38
- Fixed include instruction in EventLimiter.h (uppercase / lowercase issue)
49

@@ -22,7 +27,7 @@
2227
Attempting to send events shorter than these minimum waiting times will add the minimum waiting time as a delay to each attempt. If excessive events are tried to be sent (e.g. in a loop) a warning is displayed.
2328
<details><summary>Events overview (click for more details)</summary>
2429

25-
| Events allowed every 10 seconds | Events allowed every 60 seconds |
30+
| Events allowed every 1 second | Events allowed every 60 seconds |
2631
|---------------------------------| --------------------------------|
2732
| sendBrightnessEvent | sendAirQualityEvent |
2833
| sendChangeChannelEvent | sendPowerSensorEvent |

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"maintainer": true
1414
}
1515
],
16-
"version": "2.9.9",
16+
"version": "2.9.10",
1717
"frameworks": "arduino",
1818
"platforms": [
1919
"espressif8266",

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SinricPro
2-
version=2.9.9
2+
version=2.9.10
33
author=Boris Jaeger <[email protected]>
44
maintainer=Boris Jaeger <[email protected]>
55
sentence=Library for https://sinric.pro - simple way to connect your device to alexa

src/SinricProVersion.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Version Configuration
77
#define SINRICPRO_VERSION_MAJOR 2
88
#define SINRICPRO_VERSION_MINOR 9
9-
#define SINRICPRO_VERSION_REVISION 9
9+
#define SINRICPRO_VERSION_REVISION 10
1010
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
1111
#define SINRICPRO_VERSION_STR "SinricPro (v" SINRICPRO_VERSION ")"
1212
#define SINRICPRO_VERISON_INT SINRICPRO_VERSION_MAJOR * 1000000 + SINRICPRO_VERSION_MINOR * 1000 + SINRICPRO_VERSION_REVISION

0 commit comments

Comments
 (0)