forked from wangeshen/MiCOKit_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
d3dc7a21.html
192 lines (174 loc) · 7.16 KB
/
d3dc7a21.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
<!--
product id: d3dc7a21
product name: MiCOKit-3288-demo_wechat_rgbled
-->
<!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>MiCOKit08</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="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>
// 从url中获取某个参数的值
function getParameterByName(name) {
var match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
// 得到设备ID
var device_id = getParameterByName('device_id');
// 如果设备ID不为空,则执行连接MQTT的操作
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;
// }
// 连接MQTT服务
function ez_connect(device_id) {
// 获取access_token
// access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token。
// 正常情况下access_token有效期为7200秒,重复获取将导致上次获取的access_token失效
var access_token = getParameterByName('access_token');
document.getElementById('device_id').innerHTML = device_id;
// websocket连接
// wsbroker:host
// wsport:端口 默认1983
// Client-ID : v1_web_[MAC] //版本号_app_手机MAC(必须是12位小写)
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, 12));
// 基本参数配置
// 连接丢失所对应的callback函数
client.onConnectionLost = onConnectionLost;
// 消息到达所对应的callback函数
client.onMessageArrived = onMessageArrived;
// 连接成功所对应的callback函数
client.connect({onSuccess:onConnect});
// 连接成功
function onConnect() {
var subtopic = device_id+'/out/#';
// Once a connection has been made, make a subscription and send a message.
// 向某个通道发送指令
// topic:通道
// commond:指令
client.publish = function(topic, commond) {
console.log("现在执行-->:"+commond);
message = new Paho.MQTT.Message(commond);
message.destinationName = topic;
client.send(message);
}
console.log("App connected.");
client.subscribe(subtopic, {qos: 0});
}
// 连接丢失
function onConnectionLost(responseObject) {
if (responseObject.errorCode !== 0)
console.log("onConnectionLost:"+responseObject.errorMessage);
}
// 消息到达
function onMessageArrived(message) {
console.log(message.topic + ': ' + message.payloadString);
}
function led_on() {
var topic = device_id+'/in/write';
var commond = '{"rgbled_switch":true}';
client.publish(topic, commond);
}
// document.querySelector('#led_on').addEventListener('touchstart', led_on);
document.querySelector('#led_on').addEventListener('click', led_on);
function led_off() {
var topic = device_id+'/in/write';
var commond = '{"rgbled_switch":false}';
client.publish(topic, commond);
}
// document.querySelector('#led_off').addEventListener('touchstart', led_off);
document.querySelector('#led_off').addEventListener('click', led_off);
function led_red() {
var topic = device_id+'/in/write';
var commond = '{"rgbled_switch":true,"rgbled_hues":0, "rgbled_saturation":100, "rgbled_brightness":100}';
client.publish(topic, commond);
}
// document.querySelector('#led_red').addEventListener('touchstart', led_red);
document.querySelector('#led_red').addEventListener('click', led_red);
function led_green() {
var topic = device_id+'/in/write';
var commond = '{"rgbled_switch":true,"rgbled_hues":120, "rgbled_saturation":100, "rgbled_brightness":100}';
client.publish(topic, commond);
}
// document.querySelector('#led_green').addEventListener('touchstart', led_green);
document.querySelector('#led_green').addEventListener('click', led_green);
function led_blue() {
var topic = device_id+'/in/write';
var commond = '{"rgbled_switch":true,"rgbled_hues":240, "rgbled_saturation":100, "rgbled_brightness":100}';
client.publish(topic, commond);
}
// document.querySelector('#led_blue').addEventListener('touchstart', led_blue);
document.querySelector('#led_blue').addEventListener('click', led_blue);
}
// 日志打印在页面的部分
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;
</script>
</body>
</html>