-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLedText.hx
More file actions
36 lines (26 loc) · 777 Bytes
/
Copy pathLedText.hx
File metadata and controls
36 lines (26 loc) · 777 Bytes
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
package examples;
import js.Node.console;
import js.Node.process;
class LedText {
var text = 'Hello there';
public function new () {
console.log('Scanning for microbit');
BBCMicrobit.discover(function(microbit) {
console.log('\tdiscovered microbit: id = %s, address = %s', microbit.id, microbit.address);
microbit.on('disconnect', function() {
console.log('\tmicrobit disconnected!');
process.exit(0);
});
console.log('connecting to microbit');
microbit.connectAndSetUp(function() {
console.log('\tconnected to microbit');
console.log('sending text: "%s"', text);
microbit.writeLedText(text, function() {
console.log('\ttext sent');
console.log('disconnecting');
microbit.disconnect();
});
});
});
}
}