Skip to content

Commit

Permalink
Bugfixes of v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
w4b-zero committed May 14, 2022
1 parent 9af7821 commit 658cbb3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ changes by me
+ config stored in eeprom<br>
+ addet webpanel with config & infos<br>
<br>
Last Relase: v0.0.1<br>
Last Relase: v0.0.2<br>


Browser (win/Firefox)<br>
Expand Down
Binary file modified img/index.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/index_mobile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/settings.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/settings_mobile.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/ESP8266_Access_Point_AP.ino
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ int debug_mode = 3;
// ********************
CRGB leds[NUM_LEDS];


String firmware_version = "v0.0.2";

String PARAM_INPUT_1 = "esid";
String PARAM_INPUT_2 = "pass";
Expand Down Expand Up @@ -120,6 +120,9 @@ String processor(const String& var){
else if(var == "QCLIENTS"){
return String(qclients_html);
}
else if(var == "FIRMWARE_VERSION"){
return String(firmware_version);
}
return String();
}

Expand Down
4 changes: 2 additions & 2 deletions src/html/index.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ p {
Humidity:
</div>
<div id="tabelle_left">
%HUMIDITY%<sup class="units">%</sup>
%HUMIDITY%<sup class="units">%%</sup>
</div>
</div>

Expand All @@ -263,7 +263,7 @@ p {
</div>
<div id="footerwrap">
<div id="footer">
<p>code from <a href="https://github.com/RuiSantosdotme" target="_blank">Rui Santos</a> modify by <a href="https://github.com/w4b-zero" target="_blank">zero&trade;</a> v. 0.0.1</p>
<p>code from <a href="https://github.com/RuiSantosdotme" target="_blank">Rui Santos</a> modify by <a href="https://github.com/w4b-zero" target="_blank">zero&trade;</a> %FIRMWARE_VERSION%</p>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/html/sets.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ p {
</div>
<div id="footerwrap">
<div id="footer">
<p>code from <a href="https://github.com/RuiSantosdotme" target="_blank">Rui Santos</a> modify by <a href="https://github.com/w4b-zero" target="_blank">zero&trade;</a> v. 0.0.1</p>
<p>code from <a href="https://github.com/RuiSantosdotme" target="_blank">Rui Santos</a> modify by <a href="https://github.com/w4b-zero" target="_blank">zero&trade;</a> %FIRMWARE_VERSION%</p>
</div>
</div>
</div>
Expand Down

0 comments on commit 658cbb3

Please sign in to comment.