I have a wifi connection that receives commands from a PC console and then makes WS2812 5050 RGB LEDs change colour, chase, fade etc.
This is all mounted in a translucent case with the LEDs pointing outwards and the ESP8266 in the middle
However it is a bit spoiled because the bright blue led is always on so any colours I push to the LEDS always have this blue light showing.
I don't know why it is on because I'm not doing any TX/RX (ie no Serial.println("");.
I'm guessing it's because of the WiFi framework (I use esp8266/Arduino, https://github.com/esp8266/Arduino which seems very stable for WiFi)
I have the ESP8266 set up as a ESP8266WebServer server(80); So it is constantly listening.
I tried digitalWrite(1, HIGH); to turn the Tx/Rx off (apparently this is the way)
and then digitalWrite(1, LOW to be sure);
That didn't work.
Any thoughts?
Richard