-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (104 loc) · 4.33 KB
/
index.html
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
<!--
(c) Copyright 2021 ABB
Any unauthorized use, reproduction, distribution,
or disclosure to third parties is strictly forbidden.
ABB reserves all rights regarding Intellectual Property Rights
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>I/O WebApp</title>
<!--
This example webapp uses some components to read and write RAPID values and I/O signal.
Load the provided Example.mod module into your controller and then run the app to test it out.
<link rel="stylesheet" type="text/css" href="app.css" />
-->
<link rel="stylesheet" type="text/css" href="LiftKit.css">
<!-- include used components -->
<script src="fp-components/fp-components-common.js"></script>
<script src="fp-components/fp-components-button-a.js"></script>
<script src="fp-components/fp-components-popup-a.js"></script>
<script src="fp-components/fp-components-menu-a.js"></script>
<script src="fp-components/fp-components-digital-a.js"></script>
<script src="fp-components/fp-components-switch-a.js"></script>
<script src="fp-components/fp-components-input-a.js"></script>
<script src="fp-components/fp-components-linechart-a.js"></script>
<script src="fp-components/fp-components-dropdown-a.js"></script>
<script src="fp-components/fp-components-toggle-a.js"></script>
<!-- include RWS api -->
<script src="rws-api/omnicore-rws.js"></script>
<script src="rws-api/omnicore-app.js"></script>
<!-- include app javascript -->
<script src="app.js"></script>
</head>
<body>
<!-- VIEW: MAIN OVERVIEW (where the app starts) ........................................................................................ -->
<div id="LiftKit-main-grid-container" class="LiftKit-generic-grid-container">
<!-- Main info section in the top left corner -->
<div id="LiftKit-main-grid-area-1" class="LiftKit-Main-infobox">
<div class="LiftKit-main-infobox">
<div>
<p>Outputs control</p>
</div>
<div>
<table class="LiftKit-main-table">
<tr>
<td>
<div class="signal" id="mySwitchDiv1"></div>
</td>
<td>
<div class="signal" id="mySwitchDiv2"></div>
</td>
<td>
<div class="signal" id="mySwitchDiv3"></div>
</td>
</tr>
<tr>
<td>
<div class="signal" id="mySwitchDiv4"></div>
</td>
<td>
<div class="signal" id="mySwitchDiv5"></div>
</td>
<td>
<div class="signal" id="mySwitchDiv6"></div>
</td>
</tr>
</table>
</div>
</div>
<div class="LiftKit-main-infobox">
<div>
<p>Inputs State</p>
</div>
<div>
<table class="LiftKit-main-table">
<tr>
<td>
<div id="myButtonDiv1"></div>
</td>
<td>
<div id="myButtonDiv2"></div>
</td>
<td>
<div id="myButtonDiv3"></div>
</td>
</tr>
<tr>
<td>
<div id="myButtonDiv4"></div>
</td>
<td>
<div id="myButtonDiv5"></div>
</td>
<td>
<div id="myButtonDiv6"></div>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>