#include #include #include #define PIN 12 Adafruit_NeoPixel strip = Adafruit_NeoPixel(30, PIN, NEO_GRBW + NEO_KHZ800); // Define the WINC1500 board connections below. // If you're following the Adafruit WINC1500 board // guide you don't need to modify these: #define WINC_CS 8 #define WINC_IRQ 7 #define WINC_RST 4 #define WINC_EN 2 // or, tie EN to VCC and comment this out #define LED 13 // Setup the WINC1500 connection with the pins above and the default hardware SPI. Adafruit_WINC1500 WiFi(WINC_CS, WINC_IRQ, WINC_RST); // Or just use hardware SPI (SCK/MOSI/MISO) and defaults, SS -> #10, INT -> #7, RST -> #5, EN -> 3-5V //Adafruit_WINC1500 WiFi; char ssid[] = "network"; // your network SSID (name) char pass[] = "password"; // your network password (use for WPA, or use as key for WEP) int keyIndex = 0; // your network key Index number (needed only for WEP) int status = WL_IDLE_STATUS; #define HOST "api.twitch.tv" #define PATH "/kraken/streams/adafruit" #define REFRESH 20 // seconds between refresh Adafruit_WINC1500SSLClient client; // Fill the dots one after the other with a color void colorWipe(uint32_t c, uint8_t wait) { for(uint16_t i=0; i