浏览代码

Add function to clear all pixels

main_ledos
Farsheed 6 年前
父节点
当前提交
b3af52d517
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      WS2812Serial.h

+ 3
- 0
WS2812Serial.h 查看文件

@@ -55,6 +55,9 @@ public:
drawBuffer[num+1] = green;
drawBuffer[num+2] = red;
}
void clear() {
memset(drawBuffer, 0, numled * 3);
}
void show();
bool busy();
uint16_t numPixels() {

正在加载...
取消
保存