Update ws2812_controller.ino

This commit is contained in:
not-matt 2017-12-27 02:03:41 +00:00 committed by GitHub
parent 61f4defaee
commit 24289b61ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,8 +16,8 @@
const uint8_t PixelPin = 3; // make sure to set this to the correct pin, ignored for Esp8266(set to 3 by default for DMA) const uint8_t PixelPin = 3; // make sure to set this to the correct pin, ignored for Esp8266(set to 3 by default for DMA)
// Wifi and socket settings // Wifi and socket settings
const char* ssid = "ASUS_VIVOBOOK"; const char* ssid = "YOUR_WIFI_SSID";
const char* password = "T!PT)Psecret"; const char* password = "YOUR_WIFI_PASSWORD";
unsigned int localPort = 7778; unsigned int localPort = 7778;
byte packetBuffer[BUFFER_LEN]; byte packetBuffer[BUFFER_LEN];
RgbColor ledDataBuffer[NUM_LEDS]; RgbColor ledDataBuffer[NUM_LEDS];