You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
default_blynk_handler is using blynk_virtual_write with the parameters in the wrong order. I lost a few hours to realize that. please fix the example !
default_blynk_handler is using blynk_virtual_write with the parameters in the wrong order. I lost a few hours to realize that. please fix the example !
wrong:
blynk_virtual_write(c, id, s_read_virtual_pin, (float) mgos_get_free_heap_size() / 1024);
fixed:
blynk_virtual_write(c, s_read_virtual_pin, (float) mgos_get_free_heap_size() / 1024 , id);
The text was updated successfully, but these errors were encountered: