用于运行.ino代码的Shell脚本

时间:2015-03-03 17:33:47

标签: shell ubuntu arduino

我有.ino代码lights.ino来重新编程Arduino灯光。

#include "FastSPI_LED2.h"
CRGB leds[NUM_LEDS];
byte serialData;

void setup() {
  delay(2000);
  LEDS.setBrightness(128);
  LEDS.addLeds<WS2801>(leds, NUM_LEDS);
  Serial.begin(9600);
  turnOff();
}

void glowOnce(){
    for(int scale = 0; scale < 128; scale++) {
      LEDS.showColor(CRGB(128, 128, 128), scale);
      delay(5);
    }

    for(int scale = 128; scale > 0; scale--) {
      LEDS.showColor(CRGB(128, 128, 128), scale);
      delay(5);
    }
}

void turnOn(){
    for(int scale = 0; scale < 128; scale++) {
      LEDS.showColor(CRGB(128, 128, 128), scale);
      delay(5);
    }
}

要运行它,我需要从命令行运行arduino并打开文件 从tools菜单中选择&#34; Serial Monitor&#34; 。 我需要从python运行一个shell脚本。 如何为这些步骤编写shell脚本?

0 个答案:

没有答案