implemented all WiFi modes (AP, STA and AP+STA)
This commit is contained in:
parent
95b7e90b11
commit
e63efd3bf1
|
|
@ -39,8 +39,8 @@
|
|||
<script>PrintSaveFail('~status_fail~');
|
||||
PrintSaveBtn('eth'); PrintApplyBtn('eth');</script>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mlp ~hide_lora~">
|
||||
<div class="mlpc">
|
||||
|
|
@ -78,7 +78,6 @@
|
|||
<td class='rl'>Включить WiFi</td>
|
||||
<td><input type="checkbox" name="wifien" value="1" ~wfen~/></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class='rl'><button type="button" class='btn' name='upd' onclick="StartScan()">Scan
|
||||
WiFi</button></td>
|
||||
|
|
@ -87,11 +86,12 @@
|
|||
</table>
|
||||
<p id="nets"></p>
|
||||
<table class='cntr'>
|
||||
<tr>
|
||||
<td class='rl'>Режим WiFi:</td>
|
||||
<td><input name="netm" type="radio" value="2" onclick="configIPBoxes()"~cln~>Клиент(CLN)</input></br>
|
||||
<input name="netm" type="radio" value="1" onclick="configIPBoxes()"~apn~>Точка
|
||||
доступа(AP)</input></td>
|
||||
<tr><td class='rl'>Режим WiFi:</td>
|
||||
<td><select name="wfmode">
|
||||
<option value="sta"~wfmode(1)~>Клиент (STA)</option>
|
||||
<option value="ap"~wfmode(2)~>Точка доступа (AP)</option>
|
||||
<option value="apsta"~wfmode(3)~>Комбинированный (AP+STA)</option>
|
||||
</select></td>
|
||||
</tr>
|
||||
<script>PrintTextInput('Имя WiFi сети(AP):','wfiap','~ssidap~',3,31);
|
||||
PrintTextInput('Ключ WiFi сети(AP):','wfpap','~wkeyap~',8,31);
|
||||
|
|
@ -117,7 +117,7 @@
|
|||
<script>PrintSaveFail('~status_fail~');
|
||||
PrintSaveBtn('wifi'); PrintApplyBtn('wifi');</script>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mlp ~hide_gprs~">
|
||||
|
|
@ -142,9 +142,9 @@
|
|||
</table>
|
||||
<script>PrintSaveFail('~status_fail~');PrintSaveBtn('gprs'); PrintApplyBtn('gprs');</script>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
<script>
|
||||
|
|
|
|||
|
|
@ -297,7 +297,7 @@ img {
|
|||
|
||||
.rl{text-align:right;}
|
||||
|
||||
input, .btn, .lab, textarea {
|
||||
input, select, .btn, .lab, textarea {
|
||||
font:.85rem consolas,monospace;
|
||||
padding-left:3px;
|
||||
border:solid 1px #CCCCCC;
|
||||
|
|
@ -320,7 +320,7 @@ textarea {
|
|||
}
|
||||
|
||||
.stg td{width:auto;padding:1px;margin:0}
|
||||
.stg input, select {height:25px}
|
||||
.stg input, {height:25px}
|
||||
input[type="radio"] { margin-top: -1px; vertical-align: middle;}
|
||||
.stg table{margin: 5px auto}
|
||||
.dot {height: 30px;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit cce9b9be61b8f7eec574f1bc40f5688c3864dbd7
|
||||
Subproject commit 67d676c5c9a3f4131faad5fd439c871c1c95dfb7
|
||||
Loading…
Reference in New Issue
Block a user