Skip to content

Commit

Permalink
UART pins renamed to GPIO in web interface and forced number
Browse files Browse the repository at this point in the history
  • Loading branch information
seeul8er committed Feb 3, 2025
1 parent 8ccb94f commit 9b827af
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,22 +135,22 @@ <h3>Wi-Fi</h3>
<h3 style="margin-top: 2rem">Serial</h3>
<div class="row" id="tx_rx_div">
<div class="six columns">
<label for="tx_pin">UART TX Pin</label>
<input type="text" name="tx_pin" value="" id="tx_pin">
<label for="tx_pin">UART TX GPIO</label>
<input type="number" name="tx_pin" value="" id="tx_pin">
</div>
<div class="six columns">
<label for="rx_pin">UART RX Pin</label>
<input type="text" name="rx_pin" value="" id="rx_pin">
<label for="rx_pin">UART RX GPIO</label>
<input type="number" name="rx_pin" value="" id="rx_pin">
</div>
</div>
<div class="row" id="rts_cts_div">
<div class="six columns">
<label for="rts_pin">UART RTS Pin</label>
<input type="text" name="rts_pin" value="" id="rts_pin">
<label for="rts_pin">UART RTS GPIO</label>
<input type="number" name="rts_pin" value="" id="rts_pin">
</div>
<div class="six columns">
<label for="cts_pin">UART CTS Pin</label>
<input type="text" name="cts_pin" value="" id="cts_pin">
<label for="cts_pin">UART CTS GPIO</label>
<input type="number" name="cts_pin" value="" id="cts_pin">
</div>
</div>
<div class="row" id="rts_thresh_div">
Expand Down

0 comments on commit 9b827af

Please sign in to comment.