| npm | 0.0.1 |
| size | 5.4kb minzipped |
| dependencies | zero |
| license | MIT |
communicate with devices beyond a translator
webmonome is a little library designed to enable communication with monome devices directly from the web browser (bypassing serialosc). while serialosc is the best choice 99% of the time, i thought that it might be nice to enable the creation of monome apps that required zero install/config.
<script src="https://unpkg.com/webmonome"></script>const monome = new Monome();
const btn = document.createElement('button');
btn.innerHTML = 'connect';
btn.addEventListener('click', () => {
monome.connect();
});
document.body.appendChild(btn);
const keydown = e => {
monome.gridLed(e.x, e.y, true);
};
const keyup = e => {
monome.gridLed(e.x, e.y);
};
monome.on('gridKeyDown', keydown);
monome.on('gridKeyUp', keyup);npm install webmonome
import Monome from 'webmonome';
const monome = new Monome();
const btn = document.createElement('button');
btn.innerHTML = 'connect';
btn.addEventListener('click', () => {
monome.connect();
});
document.body.appendChild(btn);
const keydown = e => {
monome.gridLed(e.x, e.y, true);
};
const keyup = e => {
monome.gridLed(e.x, e.y);
};
monome.on('gridKeyDown', keydown);
monome.on('gridKeyUp', keyup);webmonome relies on the WebUSB api. information on browser support for the WebUSB api can be found over at caniuse.
webmonome also requires that serialosc is disabled. On macOS open Terminal and execute:
launchctl unload /Library/LaunchAgents/org.monome.serialosc.plist
to re-enable:
launchctl load /Library/LaunchAgents/org.monome.serialosc.plist
-
initialize WebUSB and connect to device:
monome.connect()
-
close the active device connection (safe to call when not connected):
monome.disconnect()
-
tear down the instance entirely (disconnects, removes listeners, disposes any canvases):
monome.dispose()
-
read the most recently reported grid size (defaults to
{x: 16, y: 8}until the device reports back):monome.size // { x: number, y: number }
system responses come in the form of events (see below).
-
request device information:
monome.query()
-
request device id:
monome.getId()
-
request grid size:
monome.getGridSize()
-
set a single LED on or off:
monome.gridLed(xCoord, yCoord, on)
xCoord: integeryCoord: integeron: boolean
-
set all LEDs on or off:
monome.gridLedAll(on)
on: boolean
-
set on/off state for column of LEDs:
monome.gridLedCol(xOffset, yOffset, state)
xOffset: integeryOffset: integer (floored to multiples of 8 by the device firmware)state: array of up to 8 0/1 bits
-
set on/off state for row of LEDs:
monome.gridLedRow(xOffset, yOffset, state)
xOffset: integer (floored to multiples of 8 by the device firmware)yOffset: integerstate: array of up to 8 0/1 bits
-
set on/off state for an 8x8 quad of LEDs:
monome.gridLedMap(xOffset, yOffset, state)
xOffset: integeryOffset: integerstate: array of up to 64 0/1 bits -
set system wide grid intensity:
monome.gridLedIntensity(intensity)
intensity: integer (0-15)
-
set single LED to specific level:
monome.gridLedLevel(xCoord, yCoord, level)
xCoord: integeryCoord: integerlevel: integer (0-15)
-
set all LEDs to specific level:
monome.gridLedLevelAll(level)
level: integer (0-15)
-
set level state for column of LEDs:
monome.gridLedLevelCol(xOffset, yOffset, state)
xOffset: integeryOffset: integer (floored to multiples of 8 by the device firmware)state: array of up to 8 integers (0-15)
-
set level state for row of LEDs:
monome.gridLedLevelRow(xOffset, yOffset, state)
xOffset: integer (floored to multiples of 8 by the device firmware)yOffset: integerstate: array of up to 8 integers (0-15)
-
set level state for an 8x8 quad of LEDs:
monome.gridLedLevelMap(xOffset, yOffset, state)
xOffset: integeryOffset: integerstate: array of up to 64 integers (0-15)
-
subscribe to events:
monome.on(eventName, callback)
eventName: stringcallback: function
-
unsubscribe from events:
monome.off(eventName, callback)
eventName: stringcallback: function
query{type: num, count: num}getIdstrgetGridSize{x: num, y: num}gridKeyDown{x: num, y: num}gridKeyUp{x: num, y: num}error{error: Error}
webmonome can spawn an HTMLCanvas based grid renderer that mirrors hardware state and emits the same gridKeyDown / gridKeyUp events, so apps can be developed and played without needing a physical device. when a physical device IS connected, the canvas and the hardware stay in sync automatically.
-
create a canvas grid (all config is optional, the default values are what is shown in the example):
const grid = monome.createCanvasGrid({ width: 16, height: 8, activeColor: '#003dda', inactiveColor: '#fff', borderColor: '#000', }); document.body.appendChild(grid.canvas);
the canvas is a regular
HTMLCanvasElement— size it with css. mouse and multi-touch input both producegridKeyDown/gridKeyUpevents on the parentMonomeinstance. -
update colors at runtime:
grid.updateTheme({ activeColor, inactiveColor, borderColor });
-
remove the canvas and stop listening:
grid.dispose();
things on the list for future releases:
- remaining
/sys/commands (grid offsets, addr scan, firmware version) - arc support
- parity with the rest of the monome serial protocol (reaching something similar to libmonome)