NEWS
Ambilight.
-
Подскажите пожалуйста, как прикрутить к iobroker hyperion-ambilight: https://hyperion-project.org/wiki/4-Remote-Apps.
-
Подскажите пожалуйста, как прикрутить к iobroker hyperion-ambilight: https://hyperion-project.org/wiki/4-Remote-Apps. `
http://forum.iobroker.net/viewtopic.php … ght#p35934 -
Подскажите пожалуйста, как прикрутить к iobroker hyperion-ambilight: https://hyperion-project.org/wiki/4-Remote-Apps.
[http://forum.iobroker.net/viewtopic.php … ght#p35934](http://forum.iobroker.net/viewtopic.php?f=24&t=3795&p=35934&hilit=hyperion+ambilight#p35934)
Спасибо, работает. -
Подскажите пожалуйста, как прикрутить к iobroker hyperion-ambilight: https://hyperion-project.org/wiki/4-Remote-Apps.
[http://forum.iobroker.net/viewtopic.php … ght#p35934](http://forum.iobroker.net/viewtopic.php?f=24&t=3795&p=35934&hilit=hyperion+ambilight#p35934)
А как сделать так, чтобы скрипт после выполнения останавливался? -
-
! var net = require('net');
! function sendMessage(host, port, message) {
! var client = net.connect({host:host, port: port}, function () {
! // 'connect' listener
! console.log('connected to server!');
! client.write(message);
! });
! client.on('data', function (data) {
! console.log(data.toString());
! client.end();
! });
! client.on('end', function () {
! console.log('disconnected from server');
! });
! client.on('error', function (error) {
! console.error('error: ' + error);
! client.end();
! });
! }
! sendMessage('192.168.1.205', 19444, '{ "color": [0,0,0], "command": "color", "priority": 100 }');
Можно ли создать такой скрипт, используя Blockly?