-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
34 lines (22 loc) · 1.04 KB
/
app.js
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
'use strict';
const Homey = require('homey');
class ITHO extends Homey.App {
onInit() {
// create & register a signal using the id from your app.json
let mySignal1 = new Homey.Signal868("MESSAGE1");
mySignal1.register()
.then(() => {
this.log('MESSAGE1 registered...');
for (var i = 0; i < 10; i++) {
this.log('Transmitting HIGH1 signal...');
mySignal1.tx([1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1], console.log);
}
for (var i = 0; i < 10; i++) {
this.log('Transmitting HIGH1 signal...');
mySignal1.cmd("HIGH1", console.log);
}
})
.catch(this.error)
}
}
module.exports = ITHO;