Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 516 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 516 Bytes

Ambilux

Calculate average pixel colour for ambilight effect.

Usage

var ambilux = require('ambilux');

var interval = ambilux.run({
  refreshInterval: 150
}, (colours) => console.log(colours));

setTimeout(() => {
  clearInterval(interval);
}, 2000);

Options

{
	screenHeight: screenSize.height,
	screenWidth: screenSize.width,
	ledsHorizontal: 10,
	ledsVertical: 7,
	pixelGap: 25,
	screenOffset: 0.1,
	refreshInterval: 100
}