Skip to content

Commit

Permalink
Fix Neopixel limit on website
Browse files Browse the repository at this point in the history
  • Loading branch information
AronHetLam committed Feb 18, 2021
1 parent bcba6c1 commit 9523442
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ATEM_tally_light/ATEM_tally_light.ino
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ void handleRoot() {
html += (String) MODE_PROGRAM_ONLY + "\" ";
if (settings.tallyModeLED2 == MODE_PROGRAM_ONLY)
html += "selected";
html += ">Program only</option> </select> </td> </tr> <tr> <td>Amount of Neopixels:</td> <td> <input type=\"number\" size=\"5\" min=\"0\" max=\"4096\" name=\"neoPxAmount\" value=\"";
html += ">Program only</option> </select> </td> </tr> <tr> <td>Amount of Neopixels:</td> <td> <input type=\"number\" size=\"5\" min=\"0\" max=\"1000\" name=\"neoPxAmount\" value=\"";
html += settings.neopixelsAmount;
html += "\" required /> </td> </tr> <tr> <td>Neopixel status LED: </td> <td> <select name=\"neoPxStatus\"> <option value=\"";
html += (String) NEOPIXEL_STATUS_FIRST + "\" ";
Expand Down
2 changes: 1 addition & 1 deletion settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ <h2>&nbsp;Settings:</h2>
<tr>
<td>Amount of Neopixels:</td>
<td>
<input type="number" size="5" min="0" max="4096" name="neoPxAmount" value="@" required />
<input type="number" size="5" min="0" max="1000" name="neoPxAmount" value="@" required />
</td>
</tr>
<tr>
Expand Down

0 comments on commit 9523442

Please sign in to comment.