Animation Tool for HT16K33

Editor

Preview

Settings

Interval

Timeline 1/1

Code

import { connect8x8Matrix } from '@thingssdk/ht16k33/espruino';

const bitmap_0 = [60,66,165,129,165,153,66,60];
const animation = [bitmap_0];

function main() {
    const matrix = connect8x8Matrix();
    //Get current frame
    const bitmap = animation[0];
    //Render frame
    matrix.render(bitmap);
}