iot.ascomtec.net Open in urlscan Pro
85.13.143.23  Public Scan

Submitted URL: https://www.iot.ascomtec.net/
Effective URL: https://iot.ascomtec.net/
Submission: On July 03 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

GET https://iot.ascomtec.net/

<form role="search" method="get" class="search-form" action="https://iot.ascomtec.net/">
  <label>
    <span class="screen-reader-text">Suchen nach:</span>
    <input type="search" class="search-field" placeholder="Suchen …" value="" name="s" title="Suchen nach:">
  </label>
  <button type="submit" class="search-submit">
    <svg class="icon icon-search" aria-hidden="true" role="img">
      <use xlink:href="https://iot.ascomtec.net/wp-content/themes/donovan/assets/icons/genericons-neue.svg#search"></use>
    </svg> <span class="screen-reader-text">Suchen</span>
  </button>
</form>

Text Content

Zum Inhalt springen

Projekte für Einplatinencomputer

Menü
 * Arduino
 * Raspberry Pi
 * Odroid
 * TCAM-7 Touchscreen
 * Motion CAM
 * WebCam’s
 * Links
 * Poke&Peek
 * Datenschutz


ARDUINO

Projekt: Arduino Matrix

Mein Arduino soll eine Matrix mit 256 (16×16) LED’s steuern.

Code:


Arduino

#include <FastLED.h> #define DATA_PIN 4 //blue #define CLOCK_PIN 5 //brown /*
Achtung  !!! Matrix mit 256 LEDS mit WS2801   = RBG    ROT, BLAU, GRÜN Matrix
mit 256 LEDS mit WS2801S0 = RGB    ROT, GRÜN, BLAU Infos zur 5V
Spannungsversorgung: eine LED zieht max 60mA bei 256*60mA sind das  15,36A !!!
*/ void setup() { /*Die LED Stripes sind als Serpentine 16 x 16 angeordnet wobei
leider unterschiedliche LED-Stripes vermischt wurden :-( daher 001 002 003 004
005 006 007 008 009 010 011 012 013 014 015 016 032 031 030 029 028 027 026 025
024 023 022 021 020 019 018 017 . . . . 256 255 254 253 252 251 250 249 248 247
246 245 244 243 242 241 */ //Definition der einzelnen LED’s //1
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 1);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 2);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 3);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 4);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 5);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 6);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 7);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 8);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 9);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 10);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 11);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 12);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 13);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 14);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 15);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 16); //2
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 17);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 18);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 19);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 20);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 21);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 22);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 23);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 24);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 25);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 26);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 27);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 28);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 29);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 30);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 31);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 32); //3
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 33);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 34);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 35);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 36);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 37);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 38);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 39);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 40);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 41);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 42);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 43);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 44);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 45);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 46);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 47);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 48); //4
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 49);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 50);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 51);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 52);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 53);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 54);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 55);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 56);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 57);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 58);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 59);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 60);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 61);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 62);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 63);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 64); //5
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 65);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 66);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 67);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 68);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 69);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 70);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 71);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 72);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 73);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 74);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 75);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 76);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 77);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 78);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 79);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 80); //6
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 81);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 82);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 83);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 84);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 85);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 86);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 87);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 88);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 89);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 90);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 91);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 92);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 93);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 94);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 95);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 96); //7
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 97);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 98);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 99);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 100);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 101);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 102);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 103);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 104);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 105);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 106);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 107);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 108);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 109);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 110);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 111);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 112); //8
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 113);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 114);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 115);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 116);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 117);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 118);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 119);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 120);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 121);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 122);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 123);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 124);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 125);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 126);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 127);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 128);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 129); //9
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 130);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 131);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 132);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 133);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 134);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 135);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 136);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 137);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 138);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 139);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 140);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 141);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 142);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 143);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 144);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 145); //10
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 146);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 147);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 148);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 149);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 150);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 151);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 152);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 153);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 154);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 155);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 156);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 157);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 158);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 159);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 160); //11
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 161);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 162);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 163);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 164);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 165);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 166);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 167);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 168);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 169);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 170);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 171);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 172);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 173);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 174);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 175);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 176); //12
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 177);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 178);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 179);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 180);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 181);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 182);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 183);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 184);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 185);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 186);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 187);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 188);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 189);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 190);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 191);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 192); //13
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 193);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 194);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 195);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 196);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 197);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 198);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 199);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 200);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 201);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 202);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 203);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 204);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 205);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 206);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 207);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 208); //14
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 209);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 210);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 211);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 212);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 213);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 214);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 215);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 216);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 217);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 218);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 219);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 220);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 221);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 222);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 223);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 224); //15
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 225);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 226);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 227);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 228);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 229);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 230);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 231);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 232);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 233);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 234);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 235);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 236);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 237);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 238);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 239);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 240); //16
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 241);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 242);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 243);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 244);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 245);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 246);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 247);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 248);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 249);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 250);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 251);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 252);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 253);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 254);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 255);
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 256); void loop(){
//start from red for( int colorStep=0; colorStep <= 255; colorStep++ ) { int r =
255; int g = 0; int b = colorStep; //Now loop though each of the LEDs and set
each one to the current color for(int x = 0; x < LED_COUNT; x++){ leds[x] =
CRGB(r,g,b); } //Display the colors we just set on the actual LEDs delay(10);
FastLED.show(); } //into blue for( int colorStep=255; colorStep >= 0;
colorStep-- ) { int r = colorStep; int g = 0; int b = 255; //Now loop though
each of the LEDs and set each one to the current color for(int x = 0; x <
LED_COUNT; x++){ leds[x] = CRGB(r,g,b); } //Display the colors we just set on
the actual LEDs delay(10); FastLED.show(); } //start from blue for( int
colorStep=0; colorStep <= 255; colorStep++ ) { int r = 0; int g = colorStep; int
b = 255; //Now loop though each of the LEDs and set each one to the current
color for(int x = 0; x < LED_COUNT; x++){ leds[x] = CRGB(r,g,b); } //Display the
colors we just set on the actual LEDs delay(10); FastLED.show(); } //into green
for( int colorStep=255; colorStep >= 0; colorStep-- ) { int r = 0; int g = 255;
int b = colorStep; //Now loop though each of the LEDs and set each one to the
current color for(int x = 0; x < LED_COUNT; x++){ leds[x] = CRGB(r,g,b); }
//Display the colors we just set on the actual LEDs delay(wait_time);
LEDS.show(); } //start from green for( int colorStep=0; colorStep <= 255;
colorStep++ ) { int r = colorStep; int g = 255; int b = 0; //Now loop though
each of the LEDs and set each one to the current color for(int x = 0; x <
LED_COUNT; x++){ leds[x] = CRGB(r,g,b); } //Display the colors we just set on
the actual LEDs delay(wait_time); LEDS.show(); } //into yellow for( int
colorStep=255; colorStep >= 0; colorStep-- ) { int r = 255; int g = colorStep;
int b = 0; //Now loop though each of the LEDs and set each one to the current
color for(int x = 0; x < LED_COUNT; x++){ leds[x] = CRGB(r,g,b); } //Display the
colors we just set on the actual LEDs delay(wait_time); LEDS.show(); } } //end
main loop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
#include <FastLED.h>
#define DATA_PIN 4 //blue
#define CLOCK_PIN 5 //brown
 
/* Achtung  !!!
 
Matrix mit 256 LEDS mit WS2801   = RBG    ROT, BLAU, GRÜN
Matrix mit 256 LEDS mit WS2801S0 = RGB    ROT, GRÜN, BLAU
Infos zur 5V Spannungsversorgung:
eine LED zieht max 60mA bei 256*60mA sind das  15,36A !!!
 
*/
 
void setup() {
 
/*Die LED Stripes sind als Serpentine 16 x 16 angeordnet
 
wobei leider unterschiedliche LED-Stripes vermischt wurden :-(
 
daher
 
001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016
 
032 031 030 029 028 027 026 025 024 023 022 021 020 019 018 017
 
.
 
.
 
.
 
.
 
256 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241
 
*/
 
 
 
 
//Definition der einzelnen LED’s
 
 
 
 
//1
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 1);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 2);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 3);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 4);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 5);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 6);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 7);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 8);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 9);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 10);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 11);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 12);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 13);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 14);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 15);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 16);
 
//2
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 17);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 18);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 19);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 20);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 21);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 22);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 23);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 24);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 25);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 26);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 27);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 28);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 29);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 30);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 31);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 32);
 
//3
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 33);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 34);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 35);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 36);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 37);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 38);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 39);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 40);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 41);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 42);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 43);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 44);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 45);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 46);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 47);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 48);
 
//4
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 49);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 50);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 51);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 52);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 53);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 54);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 55);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 56);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 57);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 58);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 59);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 60);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 61);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 62);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 63);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 64);
 
//5
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 65);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 66);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 67);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 68);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 69);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 70);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 71);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 72);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 73);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 74);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 75);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 76);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 77);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 78);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 79);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 80);
 
//6
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 81);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 82);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 83);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 84);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 85);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 86);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 87);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 88);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 89);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 90);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 91);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 92);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 93);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 94);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 95);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 96);
 
//7
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 97);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 98);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 99);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 100);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 101);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 102);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 103);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 104);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 105);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 106);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 107);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 108);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 109);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 110);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 111);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 112);
 
//8
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 113);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 114);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 115);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 116);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 117);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 118);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 119);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 120);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 121);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 122);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 123);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 124);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 125);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 126);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 127);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 128);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 129);
 
//9
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 130);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 131);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 132);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 133);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 134);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 135);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 136);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 137);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 138);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 139);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 140);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 141);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 142);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 143);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 144);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 145);
 
//10
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 146);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 147);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 148);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 149);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 150);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 151);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 152);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 153);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 154);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 155);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 156);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 157);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 158);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 159);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 160);
 
//11
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 161);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 162);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 163);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 164);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 165);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 166);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 167);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 168);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 169);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 170);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 171);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 172);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 173);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 174);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 175);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 176);
 
//12
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 177);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 178);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 179);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 180);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 181);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 182);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 183);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 184);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 185);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 186);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 187);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 188);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 189);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 190);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 191);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 192);
 
//13
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 193);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 194);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 195);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 196);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 197);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 198);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 199);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 200);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 201);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 202);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 203);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 204);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 205);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 206);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 207);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 208);
 
//14
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 209);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 210);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 211);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 212);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 213);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 214);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 215);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 216);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 217);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 218);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 219);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 220);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 221);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 222);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 223);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 224);
 
//15
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 225);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 226);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 227);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 228);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 229);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 230);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 231);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 232);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 233);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 234);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 235);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 236);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 237);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 238);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 239);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 240);
 
//16
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 241);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 242);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 243);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 244);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 245);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 246);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 247);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 248);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 249);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 250);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 251);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 252);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 253);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 254);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 255);
 
FastLED.addLeds<WS2801, DATA_PIN, CLOCK_PIN, RBG>(leds, 256);
 
 
 
 
void loop(){
 
 
 
 
//start from red
 
for( int colorStep=0; colorStep <= 255; colorStep++ ) {
 
 
 
 
int r = 255;
 
int g = 0;
 
int b = colorStep;
 
 
 
 
//Now loop though each of the LEDs and set each one to the current color
 
for(int x = 0; x < LED_COUNT; x++){
 
leds[x] = CRGB(r,g,b);
 
}
 
 
 
 
//Display the colors we just set on the actual LEDs
 
delay(10);
 
FastLED.show();
 
}
 
 
 
 
//into blue
 
for( int colorStep=255; colorStep >= 0; colorStep-- ) {
 
 
 
 
int r = colorStep;
 
int g = 0;
 
int b = 255;
 
 
 
 
//Now loop though each of the LEDs and set each one to the current color
 
for(int x = 0; x < LED_COUNT; x++){
 
leds[x] = CRGB(r,g,b);
 
}
 
 
 
 
//Display the colors we just set on the actual LEDs
 
delay(10);
 
FastLED.show();
 
}
 
 
 
 
//start from blue
 
for( int colorStep=0; colorStep <= 255; colorStep++ ) {
 
 
 
 
int r = 0;
 
int g = colorStep;
 
int b = 255;
 
 
 
 
//Now loop though each of the LEDs and set each one to the current color
 
for(int x = 0; x < LED_COUNT; x++){
 
leds[x] = CRGB(r,g,b);
 
}
 
 
 
 
//Display the colors we just set on the actual LEDs
 
delay(10);
 
FastLED.show();
 
}
 
 
 
 
//into green
 
for( int colorStep=255; colorStep >= 0; colorStep-- ) {
 
 
 
 
int r = 0;
 
int g = 255;
 
int b = colorStep;
 
 
 
 
//Now loop though each of the LEDs and set each one to the current color
 
for(int x = 0; x < LED_COUNT; x++){
 
leds[x] = CRGB(r,g,b);
 
}
 
 
 
 
//Display the colors we just set on the actual LEDs
 
delay(wait_time);
 
LEDS.show();
 
}
 
 
 
 
//start from green
 
for( int colorStep=0; colorStep <= 255; colorStep++ ) {
 
 
 
 
int r = colorStep;
 
int g = 255;
 
int b = 0;
 
 
 
 
//Now loop though each of the LEDs and set each one to the current color
 
for(int x = 0; x < LED_COUNT; x++){
 
leds[x] = CRGB(r,g,b);
 
}
 
 
 
 
//Display the colors we just set on the actual LEDs
 
delay(wait_time);
 
LEDS.show();
 
}
 
 
 
 
//into yellow
 
for( int colorStep=255; colorStep >= 0; colorStep-- ) {
 
 
 
 
int r = 255;
 
int g = colorStep;
 
int b = 0;
 
 
 
 
//Now loop though each of the LEDs and set each one to the current color
 
for(int x = 0; x < LED_COUNT; x++){
 
leds[x] = CRGB(r,g,b);
 
}
 
 
 
 
//Display the colors we just set on the actual LEDs
 
delay(wait_time);
 
LEDS.show();
 
}
 
 
 
 
} //end main loop

 

Suchen nach: Suchen

NEUESTE BEITRÄGE

 * Ambilight mit Raspberry Pi 3
 * TimeLaps für Autonomen Einsatz mit RTC
 * Zusammenbau Seti-Cluster
 * Seti Cluster mit teilweisem Ausfall
 * Timelaps Aufnahmen im Autonomen Einsatz

NEUESTE KOMMENTARE

 * A.Schade bei TimeLaps für Autonomen Einsatz mit RTC
 * Ort bei TimeLaps für Autonomen Einsatz mit RTC
 * Timelaps Aufnahmen im Autonomen Einsatz – Projekte für Einplatinencomputer
   bei TimeLaps für Autonomen Einsatz mit RTC

ARCHIVE

 * November 2019
 * April 2019
 * Dezember 2018
 * August 2017

KATEGORIEN

 * Allgemein
 * Hardwarebastelei
 * Projekte

Erstellt mit WordPress und Donovan.

Benachrichtigungen