true rgb led strip code example
Example 1: blynk rgb led strip
red_esp= map(value_red_esp, 0, 673, 0, 255);
green_esp= map(value_green_esp, 0, 673, 0, 255);
blue_esp= map(value_blue_esp, 0, 673, 0, 255);
Example 2: blynk rgb led strip
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
char auth[] = "********************************";
char ssid[] = "**********";
char pass[] = "*********";
void setup()
{
Serial.begin(9600);
Blynk.begin(auth, ssid, pass);
}
void loop()
{
Blynk.run();
}