8000 GitHub - C453/Pixoo-TS: A TypeScript library to interface with a Divoom Pixoo 64
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

C453/Pixoo-TS

Repository files navigation

Pixoo-TS

A TypeScript library to interface with a Divoom Pixoo 64

A decent chunk of this code is based off of https://github.com/SomethingWithComputers/pixoo (Python)

Getting Started:

import Pixoo from 'pixoo';

const pixoo = new Pixoo('192.168.0.x', 64);

// initialize
await pixoo.init();

// draw image at (0, 0)
await pixoo.drawImage('./.tmp/art.jpg', [0, 0]);

// draw red text at (0, 10)
const red = [255, 0, 0];
await pixoo.drawText('Hello, World!', [0, 10], red);

About

A TypeScript library to interface with a Divoom Pixoo 64

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  
0