File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ remove the brightness component from the config.
170
170
| ` accessory ` | Must be "HttpPushRgb" | |
171
171
| ` name ` | The name of your RGB accessory. It will appear in the Home app | "RGB Light" |
172
172
| ` service ` | ` "Light" ` or ` "Switch" ` | |
173
- | ` timeout ` _ (optional)_ | Time (in milli seconds) until the accessory will be marked as "Not Responding" if it is unreachable.| 5000 |
173
+ | ` timeout ` _ (optional)_ | Time (in milli seconds) until the accessory will be marked as "Not Responding" if it is unreachable.| 10000 |
174
174
| ` http_method ` _ (optional)_ | The HTTP method used for set requests only. Get HTTP requests are fixed to 'GET' for now. | "GET" |
175
175
| ` username ` _ (optional)_ | Username if http authentication is enabled on the RGB device. | |
176
176
| ` password ` _ (optional)_ | Password if http authentication is enabled on the RGB device. | |
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ function HttpPushRgb(log, config) {
57
57
this . http_method = config . http_method || 'GET' ;
58
58
this . username = config . username || '' ;
59
59
this . password = config . password || '' ;
60
- this . timeout = config . timeout || 5000 ;
60
+ this . timeout = config . timeout || 10000 ;
61
61
62
62
// Handle the basic on/off
63
63
this . switch = { powerOn : { } , powerOff : { } , status : { } } ;
You can’t perform that action at this time.
0 commit comments