import LedController from 'ws2801-pi';
// const LedController = require('ws2801-pi').default;
const amountOfLedsOnStrip = 100;
const ledController = new LedController(amountOfLedsOnStrip);
// Set color of whole led strip
ledController.fillLeds(color);
// Set color of single led
ledController.setLed(0, color);
// Clear led strip (turn all leds off)