Skip to content

Commit

Permalink
replace calls to /wasserzaehler.html with calls to /value (#1469)
Browse files Browse the repository at this point in the history
Co-authored-by: CaCO3 <caco@ruinelli.ch>
  • Loading branch information
caco3 and CaCO3 committed Dec 9, 2022
1 parent f8119e0 commit e008f57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sd-card/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h2>An ESP32 all inclusive neural network recognition system for meter digitaliz
</li>
</ul>

<li><a href="#" onclick="loadPage('wasserzaehler.html?full');">Recognition</a></li>
<li><a href="#" onclick="loadPage('value?full');">Recognition</a></li>
<li><a href="#" onclick="loadPage('graph.html');">Data Graph</a></li>
<li><a href="#" onclick="loadPage('fileserver/');">File Server</a></li>
<li><a>System <i class="arrow down"></i></a>
Expand Down
2 changes: 1 addition & 1 deletion sd-card/html/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
}

function loadValue(_type, _div, _style) {
url = basepath + '/wasserzaehler.html?all=true&type=' + _type;
url = basepath + '/value?all=true&type=' + _type;
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
Expand Down
2 changes: 1 addition & 1 deletion sd-card/html/test.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
var basepath = "http://192.168.178.22";
function testinit(){
basepath = getbasepath();
url = basepath + '/wasserzaehler.html?all=true';
url = basepath + '/value?all=true';
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
Expand Down

0 comments on commit e008f57

Please sign in to comment.