mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-20 06:28:16 +03:00
.
This commit is contained in:
@@ -2,118 +2,16 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
<title>AI on the edge</title>
|
||||
<title>jomjol - AI on the edge</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- <link rel="stylesheet" href="style.css" type="text/css" > -->
|
||||
<style>
|
||||
/* Older Firmware versions (11.2.0 and older) do not support css files, therefore we need to keep it integrated for now! */
|
||||
body, html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
margin: 0px 0px 0px 2px;
|
||||
padding: 0;
|
||||
font-family: arial;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.main {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.iframe {
|
||||
flex-grow: 1;
|
||||
margin: 5px 7px 4px 0px;
|
||||
padding: 0;
|
||||
border: 2px solid black;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin-block-end: 0.3em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.5em;
|
||||
margin-block-start: 0.3em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: #333;
|
||||
width:1000px;
|
||||
}
|
||||
|
||||
li {
|
||||
float: left;
|
||||
font-family: arial;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
li a, .dropbtn {
|
||||
display: inline-block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
li a:hover, .dropdown:hover .dropbtn {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
li.dropdown {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dropdown-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #f9f9f9;
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
z-index: 1;
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
.dropdown-content a {
|
||||
color: black;
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.dropdown-content a:hover {
|
||||
color: white;
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown-content {
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="style.css" type="text/css" >
|
||||
|
||||
<script type="text/javascript" src="common.js"></script>
|
||||
<script type="text/javascript" src="gethost.js"></script>
|
||||
<script type="text/javascript" src="readconfigcommon.js"></script>
|
||||
<script type="text/javascript" src="readconfigparam.js"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@@ -126,36 +24,45 @@ li.dropdown {
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<ul>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = '/wasserzaehler_roi.html';">Overview</a></li>
|
||||
<li class="dropdown">
|
||||
<a href="javascript:void(0)" class="dropbtn">Configuration</a>
|
||||
<div class="dropdown-content">
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/prevalue_set.html';">Set Previous Value</a>
|
||||
<a href="index_configure.html">Edit Configuration</a>
|
||||
</div>
|
||||
<div class="menu">
|
||||
<ul>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'wasserzaehler_roi.html';">Overview</a></li>
|
||||
<li><a>Settings <i class="arrow down"></i></a>
|
||||
<ul>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'prevalue_set.html';">Set Previous Value</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'edit_config_param.html';">Configuration</a></li>
|
||||
<li><a>Alignment <i class="arrow right"></i></a>
|
||||
<ul>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'edit_reference.html';">Reference Image</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'edit_alignment.html';">Alignment Marks</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a><strong>R</strong>egions <strong>O</strong>f <strong>I</strong>nterest <i class="arrow right"></i></a>
|
||||
<ul>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'edit_digits.html';">Digital ROIs</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'edit_analog.html';">Analog ROIs</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'wasserzaehler.html?full';">Recognition</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'fileserver/';">File Server</a></li>
|
||||
<li><a>System <i class="arrow down"></i></a>
|
||||
<ul>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'backup.html';">Backup/Restore</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'ota_page.html';">OTA Update</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'fileserver/log/message/?readonly=true';">Log Viewer</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'reboot_page.html';">Reboot</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'info.html';">Info</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = '/wasserzaehler.html?full';">Recognition</a></li>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = '/fileserver/';">File Server</a></li>
|
||||
<li class="dropdown">
|
||||
<a href="javascript:void(0)" class="dropbtn">System</a>
|
||||
<div class="dropdown-content">
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/backup.html';">Backup/Restore</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/ota_page.html';">OTA Update</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/fileserver/log/message/?readonly=true';">Log Viewer</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/reboot_page.html';">Reboot</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/info.html';">Info</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<iframe name="maincontent" class="iframe" id="maincontent" src="wasserzaehler_roi.html"></iframe>
|
||||
|
||||
<span id="Version" style="font-size: 10px; margin-top: -5px">Loading version...</span>
|
||||
|
||||
<script type="text/javascript">
|
||||
LoadHostname();
|
||||
LoadVersion();
|
||||
</script>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -1,169 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
<title>AI on the edge</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- <link rel="stylesheet" href="style.css" type="text/css" > -->
|
||||
<style>
|
||||
/* Older Firmware versions (11.2.0 and older) do not support css files, therefore we need to keep it integrated for now! */
|
||||
body, html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 800px;
|
||||
margin: 0px 0px 0px 2px;
|
||||
padding: 0;
|
||||
font-family: arial;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.main {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.iframe {
|
||||
flex-grow: 1;
|
||||
margin: 5px 7px 4px 0px;
|
||||
padding: 0;
|
||||
border: 2px solid black;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin-block-end: 0.3em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.5em;
|
||||
margin-block-start: 0.3em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: #333;
|
||||
width:1000px;
|
||||
}
|
||||
|
||||
li {
|
||||
float: left;
|
||||
font-family: arial;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
li a, .dropbtn {
|
||||
display: inline-block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
li a:hover, .dropdown:hover .dropbtn {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
li.dropdown {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.dropdown-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #f9f9f9;
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
z-index: 1;
|
||||
font-family: arial;
|
||||
}
|
||||
|
||||
.dropdown-content a {
|
||||
color: black;
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.dropdown-content a:hover {
|
||||
color: white;
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown-content {
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main">
|
||||
|
||||
<table style="border: none">
|
||||
<tr><td style="padding-right: 10px;"><img src="favicon.ico"></td>
|
||||
<td><h1 id="id_title"> Digitizer - Configure</h1>
|
||||
<h2>An ESP32 all inclusive neural network recognition system for meter digitalization</h2>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<ul>
|
||||
<li aria-current="page"><a href="index.html">Main Page</a>
|
||||
<li><a href="#"onclick="document.getElementById('maincontent').src = 'edit_config_param.html';">Configuration</a></li>
|
||||
<li class="dropdown">
|
||||
<a href="javascript:void(0)" class="dropbtn">Alignment</a>
|
||||
<div class="dropdown-content">
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = 'edit_reference.html';">Reference Image</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = 'edit_alignment.html';">Alignment Marks</a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a href="javascript:void(0)" class="dropbtn">Regions Of Interest (ROI)</a>
|
||||
<div class="dropdown-content">
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = 'edit_digits.html';">Digital ROIs</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = 'edit_analog.html';">Analog ROIs</a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a href="javascript:void(0)" class="dropbtn">System</a>
|
||||
<div class="dropdown-content">
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/backup.html';">Backup/Restore</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/ota_page.html';">OTA Update</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/fileserver/log/message/?readonly=true';">Log Viewer</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/reboot_page.html';">Reboot</a>
|
||||
<a href="#"onclick="document.getElementById('maincontent').src = '/info.html';">Info</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<iframe name="maincontent" class="iframe" id="maincontent" src="edit_config_param.html"></iframe>
|
||||
|
||||
<span id="Version" style="font-size: 10px; margin-top: -5px">Loading version...</span>
|
||||
|
||||
<script type="text/javascript" src="common.js"></script>
|
||||
<script type="text/javascript" src="gethost.js"></script>
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
LoadHostname();
|
||||
LoadVersion();
|
||||
</script>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -18,7 +18,7 @@ body, html {
|
||||
|
||||
.iframe {
|
||||
flex-grow: 1;
|
||||
margin: 5px 7px 4px 0px;
|
||||
margin: 5px 0px 4px 0px;
|
||||
padding: 0;
|
||||
border: 2px solid black;
|
||||
}
|
||||
@@ -41,60 +41,216 @@ p {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
|
||||
|
||||
.menu{
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
font-size:18px;
|
||||
font-weight:normal;
|
||||
/* color:#6D6D6D; */
|
||||
/* height: 50px; */
|
||||
}
|
||||
|
||||
.menu ul{
|
||||
height:50px;
|
||||
list-style:none;
|
||||
background-color: #333;
|
||||
width:1000px;
|
||||
}
|
||||
|
||||
li {
|
||||
float: left;
|
||||
font-family: arial;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
li a, .dropbtn {
|
||||
display: inline-block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
/* color: white; */
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
li a:hover, .dropdown:hover .dropbtn {
|
||||
background-color: red;
|
||||
.menu li{
|
||||
float:left;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
li.dropdown {
|
||||
|
||||
.menu li a{
|
||||
color:white;
|
||||
/* display:block; */
|
||||
display: inline-block;
|
||||
/* font-weight:normal; */
|
||||
line-height:50px;
|
||||
/* font-size: 18px; */
|
||||
margin:0px;
|
||||
padding:0px 25px;
|
||||
text-align:center;
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.dropdown-content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background-color: #f9f9f9;
|
||||
min-width: 160px;
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
z-index: 1;
|
||||
font-family: arial;
|
||||
|
||||
/*.menu {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
font-family: "Times New Roman";
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #6D6D6D;
|
||||
}*/
|
||||
|
||||
.menu ul {
|
||||
height: 50px;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.dropdown-content a {
|
||||
color: black;
|
||||
padding: 12px 16px;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
text-align: left;
|
||||
.menu li {
|
||||
float: left;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.dropdown-content a:hover {
|
||||
color: white;
|
||||
.menu li a {
|
||||
color: white;
|
||||
display: block;
|
||||
font-weight: normal;
|
||||
line-height: 50px;
|
||||
margin: 0px;
|
||||
padding: 0px 25px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu li a:hover, .menu ul li:hover a{
|
||||
color:white;
|
||||
background-color: red;
|
||||
|
||||
display: inline-block;
|
||||
/* height: 50px; */
|
||||
text-decoration:none;
|
||||
/* overflow: hidden; */
|
||||
|
||||
/* display: block; */
|
||||
margin:0px;
|
||||
padding:0px 25px;
|
||||
|
||||
/* line-height:50px;
|
||||
font-size: 18px;
|
||||
margin:0px;
|
||||
padding:0px 25px;*/
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown-content {
|
||||
.menu li ul{
|
||||
background: white;
|
||||
display:none;
|
||||
height:auto;
|
||||
padding:0px;
|
||||
margin:0px;
|
||||
border:0px;
|
||||
position:absolute;
|
||||
width: 210px; /*160px + 50px; */
|
||||
/* z-index:200; */
|
||||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.menu li:hover ul{
|
||||
display:block;
|
||||
}
|
||||
|
||||
.menu li li {
|
||||
display:block;
|
||||
float:none;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
width:160px;
|
||||
color: black;
|
||||
background-color: blue;
|
||||
}
|
||||
|
||||
.menu li:hover li a{
|
||||
background:none;
|
||||
color: black;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.menu li ul a{
|
||||
display:block;
|
||||
height:50px;
|
||||
font-style:normal;
|
||||
margin:0px;
|
||||
padding:0px 10px 0px 15px;
|
||||
text-align:left;
|
||||
width:160px;
|
||||
/* background-color: blue; */
|
||||
}
|
||||
|
||||
.menu li ul a:hover,
|
||||
.menu li ul li:hover,
|
||||
.menu li ul li ul a:hover,
|
||||
.menu li ul li ul li:hover{
|
||||
border:0px;
|
||||
color:#ffffff;
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color: red;
|
||||
width:160px;
|
||||
}
|
||||
|
||||
.menu li ul li ul li ul a:hover,
|
||||
.menu li ul li ul li ul li:hover
|
||||
{
|
||||
border:0px;
|
||||
color:#ffffff;
|
||||
text-decoration:none;
|
||||
color:white;
|
||||
background-color: green;
|
||||
width:160px;
|
||||
}
|
||||
|
||||
.menu p{
|
||||
clear:left;
|
||||
color: green;
|
||||
}
|
||||
|
||||
.menu ul li ul li {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu ul li ul li ul, .menu ul li:hover ul li ul {
|
||||
display: none;
|
||||
margin-left:50px;
|
||||
}
|
||||
|
||||
.menu ul li ul li:hover ul {
|
||||
display: block;
|
||||
}
|
||||
position: absolute;
|
||||
left: 100%;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.menu ul li ul li:hover ul li a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.menu ul li ul li:hover ul li a:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
|
||||
.arrow {
|
||||
border: solid black;
|
||||
border-width: 0 3px 3px 0;
|
||||
display: inline-block;
|
||||
padding: 3px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.right {
|
||||
transform: rotate(-45deg);
|
||||
-webkit-transform: rotate(-45deg);
|
||||
|
||||
position: absolute;
|
||||
right: -40px;
|
||||
top: 20px;
|
||||
width:0px;
|
||||
height:0px;
|
||||
}
|
||||
|
||||
.down {
|
||||
transform: rotate(45deg);
|
||||
-webkit-transform: rotate(45deg);
|
||||
border-bottom: solid white;
|
||||
border-right: solid white;
|
||||
margin: 0px 0px 2px 5px;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user