-
Notifications
You must be signed in to change notification settings - Fork 19
/
f4680913.html
215 lines (189 loc) · 6.89 KB
/
f4680913.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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!--
product id: f4680913
product name: MiCOKit-3165_Enjoy
-->
<!DOCTYPE html>
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<title>MiCOKit</title>
<link href="//code.ionicframework.com/1.0.0-beta.13/css/ionic.css" rel="stylesheet">
<style>
#debug {
margin-top:44px;
background-color: white;
height: 300px;
overflow: scroll;
color: black;
font-size: 12px;
}
#debug p {
padding: 3px 5px;
word-wrap: break-word;
}
.gray {
background-color: #ddd;
}
#debug span {
display: block;
word-wrap: break-word;
margin-bottom: 2px;
}
</style>
</head>
<body>
<div class="bar bar-header bar-assertive">
<h1 class="title" id="device_id"></h1>
</div>
<div id="debug"></div>
<div class="bar-footer" style="bottom:0;position:absolute;width:100%">
<div class="item item-input-inset">
<label class="item-input-wrapper">
<input type="text" placeholder="message" id="message">
</label>
<button class="button button-small button-royal" id="send2uart">
Uart
</button>
<button class="button button-small button-energized" id="read">
Read
</button>
<button class="button button-small button-energized" id="write">
Write
</button>
</div>
<div class="button-bar">
<a class="button" style="background:red; color:white" id="led_red">Red</a>
<a class="button" style="background:green; color:white" id="led_green">Green</a>
<a class="button" style="background:blue; color:white" id="led_blue">Blue</a>
</div>
<div class="button-bar">
<a class="button" style="background:white; color:black" id="led_on">On</a>
<a class="button" style="background:black; color:white" id="led_off">Off</a>
</div>
</div>
<script src="http://api.easylink.io/assets/js/mqttws31.js"></script>
<script>
function getParameterByName(name) {
var match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
var device_id = getParameterByName('device_id');
if ( device_id !== null ){
ez_connect(device_id);
}
function dump_obj(myObject) {
var s = '';
for (var property in myObject) {
s += '<span>' + property +": " + myObject[property] + '</span>';
}
return s;
}
var i = 0;
console.log = (function(old_funct, div_log) {
return function(text) {
old_funct(text);
var p = '';
if (i%2 == 0)
p = '<p>';
else
p = '<p class=\'gray\'>';
if (typeof text === "object")
div_log.innerHTML += p + JSON.stringify(text) + '</p>';
else
div_log.innerHTML += p + text + '</p>';
div_log.scrollTop = div_log.scrollHeight;
i += 1;
};
} (console.log.bind(console), document.getElementById("debug")));
console.error = console.debug = console.info = console.log
function ez_connect(device_id) {
var access_token = getParameterByName('access_token');
document.getElementById('device_id').innerHTML = device_id;
var wsbroker = "api.easylink.io"; //mqtt websocket enabled broker
var wsport = 1983 // port for above
var client = new Paho.MQTT.Client(wsbroker, wsport, "v1-web-" + parseInt(Math.random() * 1000000, 10));
client.onConnectionLost = onConnectionLost;
client.onMessageArrived = onMessageArrived;
client.connect({onSuccess:onConnect});
function onConnect() {
// Once a connection has been made, make a subscription and send a message.
client.publish = function(topic, payload) {
message = new Paho.MQTT.Message(payload);
message.destinationName = topic;
client.send(message);
}
console.log("App connected.");
client.subscribe(device_id+'/out/#', {qos: 0});
}
function onConnectionLost(responseObject) {
if (responseObject.errorCode !== 0)
console.log("onConnectionLost:"+responseObject.errorMessage);
}
function onMessageArrived(message) {
if (message.destinationName == device_id + '/out/_online') {
if (message.payloadString == '1') {
console.log("Device online.");
}
else {
console.log("Device offline.");
}
}
else {
console.log(message.payloadString);
}
}
var inputMessage = document.getElementById('message');
function send2uart() {
if ( inputMessage.value.length == 0 ) return;
client.publish(device_id+'/in/write', '{"11":"' + inputMessage.value + '"}');
console.log(inputMessage.value);
inputMessage.value = '';
}
//document.querySelector('#send2uart').addEventListener('touchstart', send2uart);
document.querySelector('#send2uart').addEventListener('click', send2uart);
function write() {
if ( inputMessage.value.length == 0 ) return;
client.publish(device_id+'/in/write', inputMessage.value);
console.log(inputMessage.value);
inputMessage.value = '';
}
// document.querySelector('#write').addEventListener('touchstart', write);
document.querySelector('#write').addEventListener('click', write);
function read() {
if ( inputMessage.value.length == 0 ) return;
client.publish(device_id+'/in/read', inputMessage.value);
console.log(inputMessage.value);
inputMessage.value = '';
}
// document.querySelector('#read').addEventListener('touchstart', read);
document.querySelector('#read').addEventListener('click', read);
function led_on() {
client.publish(device_id+'/in/write', '{"4":true}');
}
// document.querySelector('#led_on').addEventListener('touchstart', led_on);
document.querySelector('#led_on').addEventListener('click', led_on);
function led_off() {
client.publish(device_id+'/in/write', '{"4":false}');
}
// document.querySelector('#led_off').addEventListener('touchstart', led_off);
document.querySelector('#led_off').addEventListener('click', led_off);
function led_red() {
client.publish(device_id+'/in/write', '{"4":true,"5":0, "6":100, "7":100}');
}
// document.querySelector('#led_red').addEventListener('touchstart', led_red);
document.querySelector('#led_red').addEventListener('click', led_red);
function led_green() {
client.publish(device_id+'/in/write', '{"4":true,"5":120, "6":100, "7":100}');
}
// document.querySelector('#led_green').addEventListener('touchstart', led_green);
document.querySelector('#led_green').addEventListener('click', led_green);
function led_blue() {
client.publish(device_id+'/in/write', '{"4":true,"5":240, "6":100, "7":100}');
}
// document.querySelector('#led_blue').addEventListener('touchstart', led_blue);
document.querySelector('#led_blue').addEventListener('click', led_blue);
}
</script>
</body>
</html>