在LedMatrix.h库Arduino中旋转文本

时间:2018-11-27 00:00:50

标签: arduino arduino-ide

我正在尝试制作一个程序,其中Max7219模块显示一些文本,但是当我上传代码时,它是横向的,如何使用该库旋转文本?

以下是视频,它的外观:

https://www.youtube.com/watch?v=SGKMzKT7m_4&feature=kp

我上传到Arduino的代码如下:

#include <SPI.h>
#include "LedMatrix.h"


#define NUMBER_OF_DEVICES 6
#define CS_PIN 53
LedMatrix ledMatrix = LedMatrix(NUMBER_OF_DEVICES, CS_PIN);
int x = 0;

void setup() {
  ledMatrix.init();

  ledMatrix.setText("MAX7219 Animation Demo");
  ledMatrix.setNextText("Second text");
}

void loop() {

  ledMatrix.clear();
  ledMatrix.scrollTextLeft();
  ledMatrix.drawText();
  ledMatrix.commit();
  delay(50);
  x=x+1;
  if (x == 400) {
     ledMatrix.setNextText("Third text"); 
  }
}

0 个答案:

没有答案