Log Event
How to log an event using firmware API
- 1.Go to Device Template -> Events
- 2.Find the Event Code. Edit it if needed
- 3.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.