giiker

JavaScript wrapper for GiiKER smart cube Bluetooth API

Usage no npm install needed!

<script type="module">
  import giiker from 'https://cdn.skypack.dev/giiker';
</script>

README

giiker

JavaScript wrapper for GiiKER smart cube Bluetooth API

Usage

import GiiKER from 'giiker';

// Note: To use Web Bluetooth API trigger action such as button click is required
const button = document.querySelector('button#connect');
button.addEventListener('click', async () => {
    const giiker = await GiiKER.connect();
    giiker.on('move', (move) => {
        console.log(move.face); //=> "F"
        console.log(move.amount); //=> -1
        console.log(move.notation); //=> "F'"
    });
})