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
1 changed files with 78 additions and 78 deletions

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)
// Wifi and socket settings
const char* ssid = "ASUS_VIVOBOOK";
const char* password = "T!PT)Psecret";
const char* ssid = "YOUR_WIFI_SSID";
const char* password = "YOUR_WIFI_PASSWORD";
unsigned int localPort = 7778;
byte packetBuffer[BUFFER_LEN];
RgbColor ledDataBuffer[NUM_LEDS];