matrix-io / matrix-os

MATRIX OS Codebase
https://creator.matrix.one
GNU General Public License v3.0
75 stars 17 forks source link

matrix.on('face') method fails to fire cb() after application has been restarted. Please test with faceTest app. #52

Closed brianofrokk3r closed 7 years ago

brianofrokk3r commented 7 years ago

matrix.on('face') method fails to fire cb() after application has been restarted. Please test with faceTest app. Please see example below.

matrix.led('red').render();
matrix.init('face').then( function(data) {
  matrix.led('green').render();
  setTimeout( function() {
    matrix.led('black').render();
  },2000);
});
eighteyes commented 7 years ago

Unable to reproduce