-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
executable file
·144 lines (130 loc) · 5.16 KB
/
dashboard.html
File metadata and controls
executable file
·144 lines (130 loc) · 5.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#000000">
<title>Simfusion</title>
<meta name="description" content="Simfusion HTML Mobile Template">
<meta name="keywords" content="bootstrap, wallet, banking, fintech mobile template, cordova, phonegap, mobile, html, responsive" />
<link rel="icon" type="image/png" href="assets/img/favicon.png" sizes="32x32">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/icon/192x192.png">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="manifest" href="__manifest.json">
</head>
<body>
<!-- loader -->
<div id="loader">
<img src="assets/img/loading-icon.png" alt="icon" class="loading-icon">
</div>
<!-- * loader -->
<!-- App Header -->
<div class="appHeader">
<div class="left">
<ion-icon href="index.html" name="reload-outline"></ion-icon>
</div>
<div class="pageTitle">Dashboard</div>
<div class="right">
<a href="checklist.html"><ion-icon name="menu-outline"></ion-icon></a>
</div>
</div>
<!-- * App Header -->
<!-- App Capsule -->
<div id="appCapsule">
<div class="section mt-2">
<div class="card">
<div class="card-body row">
<br>
<h4 class="col-6">PV1 Voltage:</h4>
<h4 class="col-6">int PV1_voltage</h4>
<br>
<h4 class="col-6">PV1 Current:</h4>
<h4 class="col-6">int PV1_current</h4>
<br>
<h4 class="col-6">PV1 Threshold:</h4>
<h4 class="col-6">int PV1_threshold</h4>
<br>
<h4 class="col-6">PV1 Mode:</h4>
<h4 class="col-6">int PV1_mode</h4>
<br>
<h4 class="col-6">PV2 Voltage:</h4>
<h4 class="col-6">int PV2_voltage</h4>
<br>
<h4 class="col-6">PV2 Current:</h4>
<h4 class="col-6">int PV2_current</h4>
<br>
<h4 class="col-6">PV2 Threshold:</h4>
<h4 class="col-6">int PV2_threshold</h4>
<br>
<h4 class="col-6">PV2 Mode:</h4>
<h4 class="col-6">int PV2_mode</h4>
<br>
<h4 class="col-6">Battery(%):</h4>
<h4 class="col-6">int BAT_fullness</h4>
<br>
<h4 class="col-6">Battery Threshold:</h4>
<h4 class="col-6">int BAT_threshold</h4>
<br>
<h4 class="col-6">Battery Current:</h4>
<h4 class="col-6">int BAT_current</h4>
<br>
<h4 class="col-6">Load Current:</h4>
<h4 class="col-6">int Load_current</h4>
<br>
<h4 class="col-6">PV Temperature:</h4>
<h4 class="col-6">int temperature</h4>
<br>
<h4 class="col-6">Time:</h4>
<h4 class="col-6">int current_timestamp</h4>
<br>
<h4 class="col-6">Date:</h4>
<h4 class="col-6">int current_Date</h4>
<br>
</div>
</div>
</div>
</div>
<!-- * App Capsule -->
<!-- History -->
<footer class="section mt-4 footer">
<h3 class="title">Last Update: Today 15:12:44 <ion-icon name="cloud-done"></ion-icon></h3>
</footer>
<!-- History -->
<!-- App Bottom Menu -->
<div class="appBottomMenu">
<a href="index.html" class="item">
<div class="col">
<ion-icon name="home"></ion-icon>
</div>
</a>
<a href="dashboard.html" class="item">
<div class="col">
<ion-icon name="flash"></ion-icon>
</div>
</a>
<a href="profile.html" class="item">
<div class="col">
<ion-icon name="person"></ion-icon>
</div>
</a>
<a href="app-settings.html" class="item">
<div class="col">
<ion-icon name="settings"></ion-icon>
</div>
</a>
</div>
<!-- * App Bottom Menu -->
<!-- ========= JS Files ========= -->
<!-- Bootstrap -->
<script src="assets/js/lib/bootstrap.bundle.min.js"></script>
<!-- Ionicons -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
<!-- Splide -->
<script src="assets/js/plugins/splide/splide.min.js"></script>
<!-- Base Js File -->
<script src="assets/js/base.js"></script>
</body>
</html>