1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| // 将方法、变量暴露出去
| var instructionsList = [{
| name: 'Eventech__1',
| hex: '01030000000AC5CD',
| readOptionHex: '0103F50000147609'
| }, {
| name: 'Eventech__3',
| hex: '03030000000AC42F', //获取实时监控数据的信息指令
| readOptionHex: '0303F500001477EB' //获取配置默认信息的指令
| }, {
| name: 'Eventech__4',
| hex: '04030000000AC598',
| readOptionHex: '0403F5000014765C'
| }] //指令
| module.exports = {
| Share: {
| title: '泵设备助手',
| path: 'pages/Connect/mainIndex',
| imageUrl: 'http://demo.beng35.com/assets/miniProgram/Share.png'
| },
| instructionsList: instructionsList,
| }
|
|