31 lines
476 B
JavaScript
31 lines
476 B
JavaScript
"use strict";
|
|
|
|
var Cylon = require("../..");
|
|
|
|
Cylon.api();
|
|
|
|
Cylon.robot({
|
|
name: "test",
|
|
|
|
connections: {
|
|
loopback: { adaptor: "loopback" }
|
|
},
|
|
|
|
devices: {
|
|
ping: { driver: "ping" }
|
|
},
|
|
|
|
work: function(my) {
|
|
every((1).seconds(), function(){
|
|
console.log("Hello, human!");
|
|
console.log(my.ping.ping());
|
|
});
|
|
|
|
after((5).seconds(), function(){
|
|
console.log("I've been at your command for 5 seconds now.");
|
|
});
|
|
}
|
|
});
|
|
|
|
Cylon.start();
|