-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
32 lines (27 loc) · 1.17 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const { getSendPixels } = require('opc-via-udp')
const WebSocket = require('ws')
const { flatten } = require('lodash')
const { clearPixels, fillPixelsWithSingleColor, randomRgbColor } = require('./visual/visual-utils')
const { getVuMicPacketStream, virtualMeter, meter, easeIn } = require('./visual/vu')
const portalConfig = require('./config').portals.portal3bar
const sendPixels = getSendPixels({
port: portalConfig.PORT,
length: portalConfig.LENGTH,
host: portalConfig.HOST
})
// easeIn(portalConfig.LENGTH, sendPixels)
// const vuMicPacketStream = getVuMicPacketStream(portalConfig.LENGTH, virtualMeter)
const vuMicPacketStream = getVuMicPacketStream(portalConfig.LENGTH, meter)
vuMicPacketStream.on('data', pixels => sendPixels(flatten(pixels)))
// const wss = new WebSocket.Server({ port: 8080 })
// wss.on('connection', (ws) => {
// ws.on('message', (message) => {
// const pixels = fillPixelsWithSingleColor(portalConfig.LENGTH, [0, 0, 0])
// const pixelPos = (message/100) * portalConfig.LENGTH
//
// for (let i = 0; i < 5; i++) {
// pixels[pixelPos] = [255, 255, 255]
// }
// sendPixels(flatten(pixels))
// })
// })