Skip to content

Commit 326ef1c

Browse files
author
Luc
committed
Fix typo issues
Thanks @treepleks
1 parent 40a20db commit 326ef1c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

esp8266/data/config_ap.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $INCLUDE[header.inc]$
66
<div class="form-group $AP_SSID_STATUS$">
77
<label class="control-label" for="CONFIG1">SSID: </label><br>
88
<input type="text" class="form-control" id="CONFIG1" name="SSID" placeholder="SSID (8~32)" max="32" value="$AP_SSID$" style="width: auto;"></div>
9-
<div class="form-group $AP_PASSWORD_STATUS$"><label class="control-label" for="CONFIG2">Password :</label><br>
9+
<div class="form-group $AP_PASSWORD_STATUS$"><label class="control-label" for="CONFIG2">Password:</label><br>
1010
<input type="password" class="form-control" id="CONFIG2" name="PASSWORD" placeholder="Password (0~64)" max="64" value="$AP_PASSWORD$" style="width: auto;"></div>
1111
<div class="checkbox $IS_SSID_VISIBLE_STATUS$"><label class="control-label"><input type="checkbox" name="SSID_VISIBLE" $IS_SSID_VISIBLE$>Visible</label></div>
1212
<div class="form-group $NETWORK_OPTION_LIST_STATUS$"><label class="control-label" for="CONFIG3">Network: </label><br>

esp8266/data/config_sta.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ $INCLUDE[header.inc]$
1212
</DIV>
1313
<div class="form-group $STA_SSID_STATUS$" ><label class="control-label" for="CONFIG1">SSID: </label><br>
1414
<input type="text" class="form-control" id="CONFIG1" name="SSID" placeholder="SSID (8~32)" value="$STA_SSID$" max="32" style="width: auto;"></div>
15-
<div class="form-group $STA_PASSWORD_STATUS$"><label class="control-label"for="CONFIG2">Password :</label><br>
15+
<div class="form-group $STA_PASSWORD_STATUS$"><label class="control-label"for="CONFIG2">Password:</label><br>
1616
<input type="password" class="form-control" id="CONFIG2" name="PASSWORD" placeholder="Password (0~64)" max="64" value="$STA_PASSWORD$" style="width: auto;"></div>
1717
<div class="form-group $HOSTNAME_STATUS$" ><label class="control-label" for="CONFIG7">Hostname: </label><br>
1818
<input type="text" class="form-control" id="CONFIG7" name="HOSTNAME" placeholder="Hostname (1~32)" value="$HOSTNAME$" max="32" style="width: auto;"></div>

esp8266/data/settings.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ content +="</div></TD><td></td></TR>";
7373
}
7474
document.getElementById('file_list').innerHTML=content;}
7575
function Delete(filename){
76-
if (confirm("Confirm deletion of :" + filename))SendCommand("delete",filename);
76+
if (confirm("Confirm deletion of:" + filename))SendCommand("delete",filename);
7777
}
7878
function SendCommand(action,filename){
7979
var xmlhttp = new XMLHttpRequest();

esp8266/esp8266.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ WiFiServer * data_server;
5656
WiFiClient serverClients[MAX_SRV_CLIENTS];
5757

5858
void setup() {
59-
// init :
59+
// init:
6060
web_interface = NULL;
6161
data_server = NULL;
6262
// ESP.wdtDisable();
@@ -86,7 +86,7 @@ void setup() {
8686
//update EEPROM with default settings
8787
Serial.begin(9600);
8888
delay(2000);
89-
Serial.println("M117 Reset requested");
89+
Serial.println(F("M117 ESP EEPROM reset"));
9090
CONFIG::reset_config();
9191
delay(1000);
9292
//put some default value to a void some exception at first start

0 commit comments

Comments
 (0)