Using zeRGBa with ESP2866

Hi, I’m completely new to Blynk but i love the concept around it and was thinking of making a RGB Lamp that i can control via my iPhone. I’m intending to use some standard 12V RGB LED’s with seperate pins for the 3 colours and a 4th pin for the 12v Power supply. i was thinking i would maybe need to use a external power supply for the LED’s but could anyone give me the code that i need in order for zeRGBa please. I’ll copy it into the following code:

  • Blynk library is licensed under MIT license
  • This example code is in public domain.

  • This example runs directly on ESP8266 chip.
  • You need to install this for ESP8266 development:
  • https://github.com/esp8266/Arduino
  • Please be sure to select the right ESP8266 module
  • in the Tools -> Board menu!
  • Change WiFi ssid, pass, and Blynk auth token to run :slight_smile:

**************************************************************/

#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = “***”;

// Your WiFi credentials.
// Set password to “” for open networks.
char ssid[] = “***”;
char pass[] = “***”;

void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
}

void loop()
{
Blynk.run();
}
/’’

Thank you.

here ya go

A post was split to a new topic: Example Code for ESp8266, Neopixels and zeRGBa