Log Event
How to log an event using firmware API
Last updated
Was this helpful?
How to log an event using firmware API
Go to Device Template -> Events
Find the Event Code. Edit it if needed
Copy it to use in the firmware code below:
Use Blynk.logEvent command to log events to the Blynk cloud.
Blynk.logEvent("event_code");
// Also, you can add a custom description:
Blynk.logEvent("event_code", String("Temperature above threshold: ") + temp);The maximum allowed length of the description is 300 chars.
Messages with description that exceeds the 300 chars limit will be discarded.
Last updated
Was this helpful?
Was this helpful?

