File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ class CloudColoredLight : public CloudColor {
82
82
83
83
void setSwitch (bool const swi) {
84
84
_value.swi = swi;
85
+ updateLocalTimestamp ();
85
86
}
86
87
87
88
float getHue () {
@@ -90,6 +91,7 @@ class CloudColoredLight : public CloudColor {
90
91
91
92
void setHue (float const hue) {
92
93
_value.hue = hue;
94
+ updateLocalTimestamp ();
93
95
}
94
96
95
97
float getSaturation () {
@@ -98,6 +100,7 @@ class CloudColoredLight : public CloudColor {
98
100
99
101
void setSaturation (float const sat) {
100
102
_value.sat = sat;
103
+ updateLocalTimestamp ();
101
104
}
102
105
103
106
float getBrightness () {
@@ -106,6 +109,7 @@ class CloudColoredLight : public CloudColor {
106
109
107
110
void setBrightness (float const bri) {
108
111
_value.bri = bri;
112
+ updateLocalTimestamp ();
109
113
}
110
114
111
115
virtual void fromCloudToLocal () {
You can’t perform that action at this time.
0 commit comments