[milight] Fix minimum value for parameter repeat (#11367)
Signed-off-by: Patrick Fink <mail@pfink.de>
This commit is contained in:
parent
a253250427
commit
31668b3891
|
@ -15,7 +15,7 @@
|
|||
<description>You either need an IP/Hostname or the Bridge ID.</description>
|
||||
<context>network-address</context>
|
||||
</parameter>
|
||||
<parameter name="repeat" type="integer" required="false" min="0" max="5">
|
||||
<parameter name="repeat" type="integer" required="false" min="1" max="5">
|
||||
<label>Repeat Commands</label>
|
||||
<description>Usually the bridge receives all commands albeit UDP is used. But the actual bulbs might be slightly out
|
||||
of bridge radio range and it sometimes helps to send commands multiple times.
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
<context>password</context>
|
||||
<default>0</default>
|
||||
</parameter>
|
||||
<parameter name="repeat" type="integer" required="false" min="0" max="5">
|
||||
<parameter name="repeat" type="integer" required="false" min="1" max="5">
|
||||
<label>Repeat Commands</label>
|
||||
<description>Usually the bridge receives all commands albeit UDP is used. But the actual bulbs might be slightly out
|
||||
of bridge radio range and it sometimes helps to send commands multiple times.
|
||||
|
|
Loading…
Reference in New Issue