This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var convert = require('color-convert'); | |
var OPC = new require('../fadecandy/examples/node/opc') | |
var client = new OPC('localhost', 7890); | |
// This is set in the CAVA config file | |
const bars = 100; | |
const frame = []; |
OlderNewer