0.0.6 • Published 5 years ago
@bazecor-api/hardware-kbdfans-kbd4x v0.0.6
Bazecor API
This is a collection of libraries to make it easier to work with keyboards that support Kaleidoscope's Focus protocol.
import Focus from "@bazecor-api/focus";
import { Model01 } from "@bazecor-api/hardware-keyboardio-model01";
let focus = new Focus();
focus.open(Model01).then(() => {
focus.command("help").then((response) => {
console.log(response);
});
});