8x8-matrix 中文文档教程

发布于 6年前 浏览 32 项目主页 更新于 3年前

node-8x8-matrix

使用节点

matrix 控制一个 8x8 矩阵 图片来自 Adafruit 商店 https://www.adafruit.com/product/870

使用 run-python 创建

Installation

  1. Install python
  2. Install Adafruit Python LED Backpack
  3. Install 8x8-matrix
$ npm i --save 8x8-matrix

Usage

Load module

const matrix = new (require('8x8-matrix'))

Mark LED to be on or off

// On: x, y, true
matrix.setPixel(0, 0, true)
// Off: x, y, false
matrix.setPixel(1, 0, false)

Write changes to matrix

matrix.writeDisplay()

Turn off all LED's and write changes to matrix

matrix.clear()
matrix.writeDisplay()

node-8x8-matrix

Control an 8x8 matrix with node

matrix Image from Adafruit shop https://www.adafruit.com/product/870

Created using run-python

Installation

  1. Install python
  2. Install Adafruit Python LED Backpack
  3. Install 8x8-matrix
$ npm i --save 8x8-matrix

Usage

Load module

const matrix = new (require('8x8-matrix'))

Mark LED to be on or off

// On: x, y, true
matrix.setPixel(0, 0, true)
// Off: x, y, false
matrix.setPixel(1, 0, false)

Write changes to matrix

matrix.writeDisplay()

Turn off all LED's and write changes to matrix

matrix.clear()
matrix.writeDisplay()
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文