IDE 1.6.11 installed with TeensyDuino 1.30 beta4 on Windows 10 Pro
DOTSTAR #30 count strip runs from Prop shield on T_3.2:
> Prop shield 9DOF tracking sketch
> Cylon sketch modified to my strip on Prop.
Cylon sketch Works on second Prop_LC shield:
> T_3.1
> T_3.5
> T_3.6 beta3
Code:
#include "FastLED.h"
#define NUM_LEDS 30
//#define DATA_PIN 7
#define DATA_PIN 11
#define CLK_PIN 13
CRGB leds[NUM_LEDS];
void setup() {
Serial.begin(57600);
Serial.println("resetting");
// LEDS.addLeds<WS2812,DATA_PIN,RGB>(leds,NUM_LEDS);
pinMode(7, OUTPUT);
digitalWrite(7, HIGH);
FastLED.addLeds<APA102, BGR>(leds, NUM_LEDS); // PJRC
LEDS.setBrightness(84);
}
// rest unchanged