Chat here is you are connecting ESP-xx type modules to existing AVR based Arduino

Moderator: igrr

User avatar
By RobNewton
#15830 Has anyone had any experience with the LDP8266 library from Adafruit? I'm curious if it would work on the ESP8266 Arduino port.

Here's a link to the library sourcecode:
https://github.com/adafruit/LPD8806

Here's a link to the product:
http://www.adafruit.com/product/306

Here's a link to the tutorial:
https://learn.adafruit.com/digital-led-strip/code

Thanks,
Rob
User avatar
By costo
#20055 The LPD8806 library uses the AVR specific USI control( USICR) and data (USIDR) registers so it will not work.

this is from: github.com/sandeepmistry/esp8266-Arduino
Other libraries (not included with the IDE)

Libraries that don't rely on low-level access to AVR registers should work well. Here are a few libraries that were verified to work:

aREST REST API handler library.
PubSubClient MQTT library. Use this sample to get started.
DHT11 - initialize DHT as follows: DHT dht(DHTPIN, DHTTYPE, 15);
DallasTemperature