bravia-node icon indicating copy to clipboard operation
bravia-node copied to clipboard

Add PowerOn support

Open sylvek opened this issue 7 years ago • 0 comments

found in an another bravia remote project

Bravia.prototype.wake = function() {

  var that = this;

  arpTable.fetch(function(err, table) {
    for(var i in table) {
      if(table[i].ip === that.ip) {
        wol.wake(table[i].mac);
      }
    }
  });

};

it works fine at home :) https://github.com/alanreid/bravia/blob/master/lib/index.js

sylvek avatar Nov 05 '17 22:11 sylvek