mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2026-01-01 22:29:03 +03:00
Cleanup REST API 2 (#1273)
This commit is contained in:
@@ -111,7 +111,7 @@ function refresh() {
|
||||
var basepath = "http://192.168.178.22";
|
||||
|
||||
function loadStatus() {
|
||||
url = basepath + '/statusflow.html';
|
||||
url = basepath + '/statusflow';
|
||||
var xhttp = new XMLHttpRequest();
|
||||
xhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
@@ -125,7 +125,7 @@ function refresh() {
|
||||
}
|
||||
|
||||
function loadCPUTemp() {
|
||||
url = basepath + '/cputemp.html';
|
||||
url = basepath + '/cpu_temperature';
|
||||
var xhttp = new XMLHttpRequest();
|
||||
xhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
@@ -138,7 +138,7 @@ function refresh() {
|
||||
}
|
||||
|
||||
function loadRSSI() {
|
||||
url = basepath + '/rssi.html';
|
||||
url = basepath + '/rssi';
|
||||
var xhttp = new XMLHttpRequest();
|
||||
xhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
|
||||
Reference in New Issue
Block a user