How to Send/Log Events
Send events using Firmware API
if (temperature > 35)
{
Blynk.logEvent("high_temp");
}Custom Event Description
if (temperature > 35)
{
Blynk.logEvent("event_code", String("High TemperatureDetected! Tº: ") + temp);
}Send events using HTTPS API
Last updated
Was this helpful?

