Correct use of TIMER

I have not been able to implement the Timer widget. Am I doing well?


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

void setup()
{
Serial.begin(9600);
Blynk.begin(auth, “cloud.blynk.cc”, 8442);
}

BLYNK_WRITE(4)
{
BLYNK_LOG(“Timer Value (V4): %s”, param.asStr());
}

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

Image1
Image2

I can not post pictures, leave links to screenshots

Saludos from Chile!

@ecerpa

Hi, your code works for me. Are you sure your dashboard was active? See related thread

Hi,

is it possible to show the time on the timer widget from my RTC DS3231??
I did not get to make this happen…

Please let me know what other option I would have to show time of my RTC on my blynk app.

Thorsten

@currymuetze

You could use virtual pins for that. Also in future we will add widget exactly for RTC.