что тут указать
BLYNK_WRITE(V5) {
digitalWrite(2, param.asInt());
}
Огромное спасибо!!!!Код:BLYNK_WRITE(V5) { digitalWrite(2, param.asInt()); }
значения gpio пинов можно сохранять в виртуальных пинах и потом из них брать значения, иначе - EEPROM
#define BLYNK_PRINT Serial // Comment this out to disable prints and save space
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include <OneWire.h>
#include <DallasTemperature.h>
// Data wire is plugged into port 2 on the Arduino
#define ONE_WIRE_BUS 2
OneWire oneWire(ONE_WIRE_BUS);
DallasTemperature sensors(&oneWire);
char auth[] = " *****";
char ssid[] = "*****";
char pass[] = "*****";
void setup()
{
Serial.begin(115200);
Blynk.begin(auth, ssid, pass);
sensors.begin();
}
void sendTemps()
{
sensors.requestTemperatures();
float temp = sensors.getTempCByIndex(0);
Serial.println(temp);
Blynk.virtualWrite(V1,temp);
}
void loop()
{
Blynk.run();
sendTemps();
}